Possible Duplicate:
Regular cast vs. static_cast vs. dynamic_cast

I learned how static_cast works by this question. Why is it important to use static_cast instead of reinterpret_cast here?

But if static_cast does knows classes' inheritance-relationship, why does dynamic_cast exist? And when do we must use dynamic_cast?

link|improve this question

I forget the specifics, but note that your static_cast example did not involve virtual. dynamic_cast is specifically used for virtual downcasting. – Pubby Feb 5 at 16:34
@Pubby Yes it is. But even if the example has a virtual method, static_cast works fine, am I misunderstanding? – Benjamin Feb 5 at 16:38
1  
Any sort of casting should be a rare event in C++, and a dynamic cast is probably one of the rarest among them, but as with most arcane C++ features, when you need it, you really need it. – Kerrek SB Feb 5 at 16:47
2  
It doesn't have anything to do with virtual methods. You have a Base* pointer to an object of a derived class. And like to access a member of that derived class. Cast required, but how do you know that the cast is valid and that the object actually is of the expected derived class type? dynamic_cast<> tells you, RTTI must be enabled. – Hans Passant Feb 5 at 17:03
feedback

closed as exact duplicate by Bart, Kerrek SB, pmr, Henrik, Als Feb 5 at 17:06

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

I'll post a simple example of how they differ:

struct foo { virtual void fun() {} };
struct bar : foo {};
struct qux : foo {};

foo* x = new qux;
bar* y = static_cast<bar*>(x);
bar* z = dynamic_cast<bar*>(x);
std::cout << y; // prints address of casted x
std::cout << z; // prints null as the cast is invalid

If I understand correctly, static_cast only knows the type it's casting to. dynamic_cast on the other hand knows type being cast, along with the type being cast to.

link|improve this answer
1  
This shows the what but OP is looking for the why. – pmr Feb 5 at 16:57
feedback

dynamic_cast returns NULL if the cast is impossible if the type is a pointer (throws exception if the type is a reference type). Hence, dynamic_cast can be used to check if an object is of a given type, static_cast cannot (you will simply end up with an invalid value).

Also, in some cases static_cast is not possible, e.g. with multiple inheritance:

class Base {};
class Foo : public Base { ... };
class Bar : public Base { ... };
class FooBar: public virtual Foo, public virtual Bar { ... };

FooBar a;
Foo & foo1 = static_cast<Foo &>(a); // Illegal, wont compile
Foo & foo2 = dynamic_cast<Foo &>(a); // Legal
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.