The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
54 views

In c++11, does dynamic_cast return nullptr or 0?

I want to check the result of dynamic_cast. In c++11 (or c++0x, for compilers that support nullptr), should I compare against nullptr or 0? Does it matter, and if so, why? Is the result ...
1
vote
2answers
50 views

When dynamic_cast will throw exception in case used with pointer?

I am using dynamic_cast in my source to cast pointer as some thing like below, Base *base = here storing the pointer; Derived *derived = dynamic_cast<Derived*>(base); In the case of base ...
0
votes
1answer
69 views

dynamic_cast performing correctly only sometimes

the structure of the problem is such Food is an abstract base class; Plant, and Animal directly inherit from that. Herbivore, Carnivore, and Omnivore inherit from Animal, while Fruits and Nuts and ...
2
votes
2answers
72 views

Cannot dynamic cast when using dynamic_pointer_cast

Why does this code not work? std::shared_ptr<Event> e = ep->pop(); std::shared_ptr<TrackerEvent> t; t = std::dynamic_pointer_cast<TrackerEvent>(e); I get the following error: ...
2
votes
3answers
80 views

Have I misapplied inheritance?

I am trying to set up a program that can generate balance sheets based on summing a number of transactions, and present the results in a format like this: The important attributes here are that the ...
-2
votes
1answer
87 views

dynamic_cast causes segmentation violation in case of three level inheritance [closed]

It seems that dynamic_cast doesn't work in case of three-level inheritance. The application crashes with Segmentation fault (core dumped) at the point of print() method invocation (in main()). Here ...
0
votes
0answers
77 views

Can I somehow figure out the type of an object in the base class constructor?

Group is a subclass of Element. Any group can contain elements (which can be groups, naturally). Each element registers itself with its containing group, which is passed into the constructor. But ...
5
votes
6answers
124 views

Should I change my design to prevent dynamic casts?

I have read several threads about dynamic casts in C++, all full of people claiming it indicates bad design. In other languages I never gave it much thought when checking the type of an object. I ...
2
votes
0answers
61 views

Qt QSharedPointer dynamicCast and objectCast fail on ubuntu

I am using Qt 5.0.1 under Ubuntu 10.04 and in my application I need to use QSharedPointer together with the appropriate dynamic_cast (object_cast) conversions at runtime. These conversions are called ...
0
votes
2answers
64 views

downcasting dynamic_cast with non-polymorphic classes, why doesn't it compile?

I have the following code: using namespace std; class BaseOk { public: virtual void ImplementMe() { }; }; class DerivedOk : public BaseOk { public: void ImplementMe() { } }; ...
0
votes
2answers
63 views

Strange results with object creation and binding

Mistakenly I wrote something daft, which to my surprise worked. class A { public: void print() { std::cout << "You can't/won't see me !!!" << std::endl; ...
0
votes
1answer
104 views

Setting values to object dynamically (dynamic property/type)

I'm trying to create JSON to Object mapper. Its main idea is that "user" defines a dictionary where keys are JSON attributes and values are Objects property names. So how does it work (so far): Get ...
0
votes
3answers
62 views

Dynamic casting effect on collection frameworks

Case A: List<String> MyList; while(index<100) { MyList = MyObject.get(MyIndex); } Case B: List MyList; while(index<100) { MyList = (List<String>) MyObject.get(MyIndex); } ...
0
votes
2answers
66 views

Checking the RTTI [duplicate]

I have the following classes and methods: //Base class class Node { public: virtual ~Node() {}; Node() {}; private: // Private things for my implementation. }; class ...
0
votes
0answers
43 views

Casating from Derived to Base, ambiguouty

Suppose we have class Base { public: virtual void foo(){} }; class Derived: public virtual Base {}; class Derived_Left: public Derived {}; class Derived_Right: public Derived {}; class ...
-2
votes
2answers
37 views

Alternatives to downcasting when implementations have unique methods [closed]

I have the following Issue. Where I have to cast inside of the makeLeftTurnMethod... this looks very ugly to me.. Is there a way where I don't have to do this? public interface Car(){ public void ...
0
votes
1answer
63 views

using dynamic_cast for runtime type identification

when reading Essential c++ chapter 5.10 Run-time Type identification, I've encountered a problem. Let me introduce a little background first. There are a base class named num_sequence and a class ...
0
votes
1answer
259 views

Dynamic cast using Type of object C#

I have one abstract class named A, and other classes (B, C, D, E, ...) that implements A I also have a list of A objects. I'd like to be able to cast dynamicly each of the object in that list to ...
0
votes
0answers
28 views

parse XML using xerces-c 2.7, dyanmic_cast failed

I am writing a piece of code to parse XMl following the following tutorial: Linux Tutorial: Parsing XML with Xerces-C C++ API DOMNodeList* children = elementRoot->getChildNodes(); const ...
-2
votes
1answer
271 views

C++: dynamic_cast causes a SEGFAULT even when the object that is casted is not NULL. How can that happen?

Suppose I have a class A and a class B that is derived from A. Now, I want to cast a const A* (called "a") to a B* using dynamic_cast (see below). If "a" really was a B*, then my resulting object ...
3
votes
1answer
163 views

dynamic_cast on llvm clang compiler failing

I am seeing a strange failure where the dynamic_cast is returning NULL on clang compiler. But the same code is working with gcc environment. Could you please point me what might be the root cause? ...
0
votes
1answer
120 views

dynamic_cast does not behave the way it should with APP_STL := gnustl_static

I have a simple c++ class called Square that inherits from Comparable (an interface with a function compareTo). Here's the c++ implementation of the compareTo method : int ...
0
votes
3answers
105 views

c++ dangerous casting code

I'm pretty sure this is dangerous code. However, I wanted to check to see if anyone had an idea of what exactly would go wrong. Suppose I have this class structure: class A { protected: int a; ...
0
votes
2answers
72 views

put a dynamic_cast in loop

Is it correct to put dynamic_cast in loop?? //Searches for the reservation with the given reservation number, and //deletes it. Uses the confirmReservation function if the reservation to be ...
4
votes
5answers
181 views

How does dynamic_cast work?

If you had the following: class Animal{}; class Bird : public Animal{}; class Dog : public Animal{}; class Penguin : public Bird{}; class Poodle : public Dog{}; Does dynamic_cast just check if ...
3
votes
3answers
237 views

using RTTI in c++ to cast an object to the correct type

I'm trying to figure out a way to dynamically cast an instance of a child class to its parent in a somewhat difficult set of conditions. Specifically, I have a an object hierarchy that looks ...
0
votes
1answer
85 views

Is this a badly designed Interface? [closed]

class IInterfaceTest { virtual void AddProperty(string key, string value) = 0; virtual void DoStuff(randomObject obj) = 0; ... //More pure virtual methods } class Concrete1 : public ...
1
vote
3answers
87 views

Legal dynamic_cast

I would like to know how to solve this problem. I don’t understand what this question is asking me: dynamic_cast<Y>(new X) To Be legal? To probably succeed?
0
votes
2answers
51 views

dynamic cast doesn't recognize member

I'm working on a project where I have 2 classes: Room and EventRoom EventRoom inherits from Room and have a few more members. In my code I do this(tmpPtr is a Room-pointer): if(eventRoom) ...
2
votes
1answer
163 views

Dynamic cast in Haxe

Is it possible to cast a variable to another type based on information available at runtime? If I have: interface Foo { } class Bar implements Foo { public function new() { } } I want ...
0
votes
3answers
152 views

Why does protected inheritance cause dynamic_cast to fail?

I changed my C++ base class to be protected inheritance and my dynamic_cast(s) stopped working. Why should changing the inheritance to protected change the behavior of dynamic_cast? struct Base { ...
0
votes
4answers
280 views

static_cast and RTTI vs dynamic_cast

Please observe the below code. As far as i know, dynamic_cast is slower than static_cast. Because it evaluates the type at runtime. My doubt here is if we use static_cast with typeid() as below , ...
0
votes
0answers
86 views

Usecases of RTTI in large scale software design [closed]

I was reading about RTTI and eventually started searching Stackoverflow about it. I see that RTTI is frowned up. My understanding is that RTTI should definitely have some legitimate use cases and ...
3
votes
3answers
211 views

Is vptr ever located not at start of object?

According to MSDN, __RTDynamicCast() function is used to implement dynamic_cast in Visual C++. One of its parameters is LONG VfDelta that is described as "offset of virtual function pointer in ...
1
vote
3answers
103 views

dynamic_cast vs exposing virtual funtions in parent class (C++)

I have a parent class "base" and another class "derived" that inherits from "base". "derived" has 1 method cH1. if I do this: base* b = new derived(); And I want to be able to do this: ...
5
votes
2answers
144 views

Well-known solution for avoiding the slowness of dynamic_cast?

I needed run-time polymorphism, so I used dynamic_cast. But now I had two problems -- dynamic_cast was extremely slow! (Scroll down for benchmark.) Long story short, I ended up solving the problem ...
1
vote
0answers
131 views

dynamic_cast issue xcode

I am working on porting a game from visual studio to xcode the game was completely written in c++ and I am having some troubles with dynamic casting that I never had when running in visual studio. I ...
2
votes
1answer
225 views

dyn_cast vs. dynamic_cast in C++

I come across a lot of dyn_cast in a codebase I am working on. Is it the same thing as dynamic_cast ? or something different ? I searched a bit but couldn't find much info..
0
votes
4answers
69 views

types casting problems

Suppose you have base class Unix_tree, and derived Unix_tree_type1, Unix_tree_type2 and so on. Why can't I cast Unix_tree to Unix_tree_type...? Is there a way to perform such a cast? Derived classes ...
1
vote
3answers
125 views

Dynamic_cast: should be replaced in this case

There is a base class A, which is virtual class A { ~virtual A() = 0; }; and more derived classes B, C, D, E... class B : public A { }; class C: public A { }; and analogously for other ...
0
votes
1answer
97 views

using dynamic_cast to point to other derived class object

I have the following scenario. There are two Base classes: Base1, Base2 and two derived classes: Derived, sysCommandExecutor which are derived as follows: #include <iostream> using namespace ...
-1
votes
2answers
159 views

C++ dynamic_cast

class A { }; class B:public A { }; int main() { A a; B b; A *ap = &b; B *bp = dynamic_cast<B*>(ap); if(bp!= NULL) cout<<"Pass"<<endl; else ...
1
vote
2answers
184 views

SIGSEGV on dynamic_cast

I am trying to dynamic_cast, one virtual class, to another: SomeClass::SomeFunc(_AListner& listner) _BListner* listner = dynamic_cast<_BListner*>(&listner) Please note that class ...
0
votes
2answers
169 views

C++ How to avoid dynamic_casting?

I have done a little research on dynamic_casting, and I read that it creates something called the RTTI, which is loaded in RAM too at start-up. At some platforms this isn't supported too I think. So I ...
4
votes
2answers
215 views

XCode 4.3/4.4 typeinfo is lost for class instantiated in a dynamically loaded shared library only if class overrides a method

I ran in to an issue using dynamic_cast on objects instantiated in a runtime loaded shared library but only if the class contains a method that overrides another method. I'm using Xcode 4.3 with the ...
0
votes
0answers
20 views

Wrapper for dynamic type checking

I want to have a wrapping function/template/macros that checks if a pointer content matches a dynamic type. Here is the code: class base { virtual void a() {}; }; class derived : public base {}; ...
1
vote
3answers
301 views

How to identify failed casts using dynamic_cast operator?

Scott Meyer in his book Effective C++ says dynamic_cast is used to perform safe casts down or across an inheritance hierarchy. That is, you use dynamic_cast to cast pointers or references to base ...
2
votes
1answer
194 views

Avoiding dynamic_cast for downcasting to the original type

How can I downcast safely (ie returning null on failure) to the exact type of the underlying object, without incurring the performance penalty of dynamic_cast, and without having to put support code ...
0
votes
1answer
244 views

Upcasting to superclasses or interfaces?

I am trying confirm the theory behind something that I have already got working in practice. The full setup is somewhat contorted, as the functionality is split between different dlls, but I'll try ...
1
vote
3answers
80 views

What does it mean to dynamic_cast<T>(event)?

event is a highlighted keyword in MSVC++ Express 2008, and the following code is used in a framework: else if (dynamic_cast<simulation::AnimateEndEvent*>(event)) { ... } What does it mean to ...

1 2 3 4