According to what I read, performing a wrong run-time dynamic_cast can either throw a bad_cast exception or return zero.
Is it correct to say that it will return zero if you are casting pointers?
i.e:
class Base { virtual void a(){} };
class Derived: public Base {};
int main () {
Base *base = new Base();
dynamic_cast<Derived*>(base);
return 0;
}
And that it will throw an bad_cast exception when casting objects?
i.e:
class Base { virtual void a(){} };
class Derived: public Base {};
int main () {
Base base;
Base& ref = base;
dynamic_cast<Derived&>(ref);
return 0;
}