Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
6answers
873 views

Are there practical uses for dynamic-casting to void pointer?

In C++, the T q = dynamic_cast<T>(p); construction performs a runtime cast of a pointer p to some other pointer type T that must appear in the inheritance hierarchy of the dynamic type of *p in ...
14
votes
7answers
1k views

dynamic_cast in c++

As i am new to c++ ,i am quite confused with the dynamic_cast keyword in c++. struct A { virtual void f() { } }; struct B : public A { }; struct C { }; void f () { A a; B b; ...
12
votes
5answers
2k views

c++ dynamic_cast error handling

Is there any good practice related to dynamic_cast error handling (except not using it when you don't have to)? I'm wondering how should I go about NULL and bad_cast it can throw. Should I check for ...
10
votes
5answers
420 views

Real world example of dynamic_cast in C++

Can anybody give me a real world example of a case when dynamic_cast is needed and can't be worked around at all? Examples I can think of can generally be worked around with double dispatch. If the ...
8
votes
3answers
165 views

What are the arguments to the types.CodeType() python call?

I'm currently trying to roll my own "marshal" code for python so i can store compiled python code on Google App Engine to serve scripts on a dynamic way. As you all can verify, "marshal" isn't ...
8
votes
2answers
241 views

Explicit instantiation of a templated class and dynamic_cast in a shared library

I stumbled into a problem today that I can't seem to solve. I am compiling a shared library that includes a templated class (Derived<T>, whose base is Base) and some explicit instantiations of ...
8
votes
5answers
399 views

How expensive are dynamic casts in C++?

For my GUI API which works with a variety of backends (sdl, gl, d3d, etc) I want to dynamically cast the generic type image to whatever it may happen to be. So the bottom line is, I would be doing ...
8
votes
3answers
272 views

dynamic_cast confusion

I give up on this... $5.2.7/2- "If T is a pointer type, v shall be an rvalue of a pointer to complete class type, and the result is an rvalue of type T. If T is a reference type, v shall ...
8
votes
5answers
1k views

dynamic_cast from “void *”

According to this, void* has no RTTI information, therefore casting from void* is not legal and it make sense. If I remember correctly, dynamic_cast from void* was working on gcc. Can you please ...
8
votes
4answers
1k views

Performance of dynamic_cast?

Before reading the question: This question is not about how useful it is to use dynamic_cast. Its just about its performance. I've recently developed a design where dynamic_cast is used a lot. When ...
8
votes
10answers
2k views

How can I avoid dynamic_cast in my C++ code?

Let's say I have the following class structure: class Car; class FooCar : public Car; class BarCar : public Car; class Engine; class FooEngine : public Engine; class BarEngine : public Engine; ...
7
votes
3answers
515 views

FAQ: Why does dynamic_cast only work if a class has at least 1 virtual method?

This does not compile in C++: class A { }; class B : public A { }; ... A *a = new B(); B *b = dynamic_cast<B*>(a);
7
votes
6answers
6k views

How bad is dynamic casting?

We often hear/read that one should avoid dynamic casting. I was wondering what would be 'good use' examples of it, according to you? Edit: @Sam: yes, I'm aware of that other thread: it is indeed ...
6
votes
5answers
178 views

Are dynamic_casts safe to remove in production code?

dynamic_casts are slower, but they are safer than static_casts (when used with object hierarchies, of course). My question is, after I've ensured in my debug code that all (dynamic) casts are correct, ...
6
votes
1answer
215 views

Fast dynamic casting progress

A little while ago, I found that very interesting paper on a very neat performance upgrade for dynamic_cast in C++: http://www2.research.att.com/~bs/fast_dynamic_casting.pdf. Basically, it makes ...
6
votes
3answers
184 views

Any suggestion for doing an arbitrary operation using given arguments of arbitrary types?

Basically i just want to do an arbitrary operation using given arguments of arbitrary types. Argument type base class is Var, and Operation is base class of the operation that will executed for given ...
6
votes
6answers
2k views

What could cause a dynamic_cast to crash?

I have a piece of code looking like this : TAxis *axis = 0; if (dynamic_cast<MonitorObjectH1C*>(obj)) axis = (dynamic_cast<MonitorObjectH1C*>(obj))->GetXaxis(); Sometimes it ...
5
votes
8answers
838 views

Is my method for avoiding dynamic_cast<> faster than dynamic_cast<> itself?

I was answering a question a few minutes ago and it raised to me another one: In one of my projects, I do some network message parsing. The messages are in the form of: [1 byte message type][2 bytes ...
5
votes
8answers
17k views

C#: Casting types dynamically

I currently have this type of code: private void FillObject(Object MainObject, Foo Arg1, Bar Arg2) { if (MainObject is SomeClassType1) { SomeClassType1 HelpObject = ...
5
votes
5answers
2k views

dynamic cast with interfaces

I have a class with implements 2 interfaces and inherits 1 class. So, generally it looks like this: class T : public A, public IB, public IC { }; There is one point in the code where I have an IB ...
4
votes
1answer
63 views

Why is a const templated reference type different from a const reference type?

Consider this template: template< typename T, typename RefT = T& > class foo { typedef const RefT const_ref_t; typedef const T& another_const_ref_t; //... }; I would ...
4
votes
3answers
155 views

Does dynamic_cast work inside overloaded operator delete?

I came across this: struct Base { void* operator new (size_t); void operator delete (void*); virtual ~Base () {} // <--- polymorphic }; struct Derived : Base {}; void Base::operator delete ...
4
votes
1answer
280 views

dynamic_cast issues: typeid object is not equal, but name is equal

I found that dynamic_cast didn't work in a situation where I expected it to, and looking at the typeid of the objects at runtime has made the situation even less clear. I just want a cast from base to ...
4
votes
2answers
203 views

Checking whether a cross-cast could possibly work?

I know that it's legal to use dynamic_cast to do a "cross-cast" across a class hierarchy. For example, if I have classes that look like this: A B \ / C If I have an A* pointer that's ...
4
votes
2answers
409 views

how does dynamic_cast work internally? [closed]

Possible Duplicate: How is dynamic_cast typically implemented? Hi! how does dynamic_cast actually work? where does the runtime know from whether some piece of memory actually fits the ...
4
votes
6answers
203 views

Is it possible to dynamic_cast from one base class to another?

For instance I have code like that class Base1 { virtual void wonderFULL() = 0; }; class Base2 { // all this weird members }; class Derived : public Base1, public Base2 { // not so weird ...
4
votes
4answers
1k views

dynamic_cast fails when used with dlopen/dlsym

Intro Let me apologise upfront for the long question. It is as short as I could make it, which is, unfortunately, not very short. Setup I have defined two interfaces, A and B: class A // An ...
4
votes
8answers
7k views

java: how can i do dynamic casting of a variable from one type to another?

i would like to do dynamic casting for a java variable, the casting type is stored in a different variable. this is regular casting: String a = (String) 5; this is what i want: String theType = ...
3
votes
4answers
114 views

When is static cast safe when you are using multiple inheritance?

I found myself in a situation where i know what type something is. The Type is one of three (or more) levels of inheritance. I call factory which returns B* however T is either the highestlevel of a ...
3
votes
3answers
143 views

dynamic_cast with RTTI disabled

I'm curious to know what happens when compiling code with a dynamic cast whith RTTI disabled (either with -fno-rttion GCC or with /GR- on visual studio). Does the compiler "falls back" to static_cast ...
3
votes
1answer
71 views

C++ mapping unique classes and extracting subclasses from value

New C++ programmer here. I have the following map definition: typedef std::map<std::string, Option> MapType; MapType my_map Option is a unique class i created. I never actually add the ...
3
votes
4answers
120 views

Dynamic Casts or Function Overloads?

Consider the following abstract class: class Abstract { public: // ... virtual bool operator==(const Abstract& rhs) const = 0; // ... }; Now suppose I'm creating multiple derived ...
3
votes
3answers
123 views

dynamic_cast doubt from C++/Stroustrup : converting to protected base class

I know that following code gives compilation error : class A{ public : virtual void name(){cout<<typeid(this).name()<<endl;}; }; class B:protected A{public : virtual void ...
3
votes
4answers
203 views

When is dynamic_cast required? [closed]

Possible Duplicate: dynamic_cast in c++ What is the difference between these two ways of assigning a derived class to a base class pointer? Derived d1; Base *b1 = &d1 Derived d2; ...
3
votes
2answers
286 views

C++: Comparing pointers of base and derived classes

I'd like some information about best practices when comparing pointers in cases such as this one: class Base { }; class Derived : public Base { }; Derived* d = new Derived; Base* b = ...
3
votes
3answers
180 views

Portably safe to pass NULL/zero to dynamic_cast?

Out of habit for checking null pointers, I have sometimes written: MyClass * c = someBasePtr ? dynamic_cast<MyClass*>(someBasePtr) : 0; if (c) {... In effect, checking for a null pointer ...
3
votes
6answers
582 views

In C++ check if two instances of a base class are infact of the same subclass

The below code explains the problem. Fill in same_sub_class to detect if the two pointers to virtual base class A are in fact the same concrete class. struct A { ... }: struct B : public A { ...
3
votes
3answers
160 views

Inheritance and pointers to pointers: why doesn't it work and how do I get around it?

Why do I get a compilation error when I call a base-class function with a pointer to a pointer to an inherited class? Example: class cFoo {}; class cBar : public cFoo {}; void func1(cFoo *) {} // ...
3
votes
3answers
583 views

How is dynamic_cast typically implemented?

Is the type check a mere integer comparison? Or would it make sense to have a GetTypeId virtual function to distinguishing which would make it an integer comparison? (Just don't want things to be a ...
3
votes
3answers
428 views

Avoiding dynamic_cast in implementation of virtual functions in derived class

Here is some sample code explaining what I am trying to achieve. Basically, I have an algorithm that depends on some basic operations available in a class. I have defined those operations in a pure ...
3
votes
4answers
532 views

How to write own dynamic_cast

This have been asked in the interview. How to write own dynamic_cast. I think, on the basis of typeid's name function. Now how to implement own typid? I have no clue on it.
3
votes
2answers
381 views

Template deduction in dynamic_cast

I have a class that is defined as the following: template <class WidgetType> class CometWidget : public WidgetType; Inside a function I am doing this: dynamic_cast<CometWidget ...
3
votes
3answers
715 views

Is LLVM an exception to the rule for avoiding dynamic casts?

LLVM has it's own hand rolled alternative to RTTI that is a speed improvement over built-in RTTI and allows dynamic casting to classes with no vtable (dyn_cast). However, it can still be used in ...
3
votes
4answers
3k views

Static cast vs. dymamic cast for traversing inheritance hierarchies

I saw one book on C++ mentioning that navigating inheritance hierarchies using static cast is more efficient than using dynamic cast. Example: #include <iostream> #include <typeinfo> ...
2
votes
2answers
142 views

Variadic templates and dynamic cast

I have a piece of C++ code as follows: template <typename ...A> struct CastAll{ template <typename ...B> void cast_all(void(*fun)(B...), A...as){ //... } }; What I'd like to ...
2
votes
1answer
134 views

Losing RTTI info after returning from a function

Given a class and subclass: class Event {...} class Note : public Event {...} A Note is Cloned and stored in a pointer within a function f(). The type-information is preserved in the pointer and ...
2
votes
5answers
167 views

Refactoring advice: How to avoid type checking in this OO design

I'm looking for advice on refactoring to improve my class design and avoid type checking. I am using the Command design pattern to construct a menu tree. An item in the menu could be of various types ...
2
votes
1answer
168 views

What's faster: down-cast from virtual base or cross-cast?

This is somewhat hypothetical as I'm not too worried about performance - just wondering which option is actually the fastest/most efficient in general, or if there is no difference whatsoever. ...
2
votes
2answers
89 views

C++ pointer casting when passing pointer as parameter to reference

Title says it all. I'm curious, is: bool State::operator<(const State* S) { return this->operator<(*dynamic_cast<const State *>(S)); } exactly the same as: bool ...
2
votes
5answers
246 views

dynamic_cast of “this” inside constructor

This question is very similar to this one Why can't I dynamic_cast "sideways" during multiple inheritence?, except that the cast does work - just not inside in the constructor. Header: ...

1 2 3