开发者

How does dynamic_cast fail?

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开发者_C百科_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;
}


dynamic_cast will return NULL on a bad cast if you are casting a pointer; it will throw std::bad_cast when casting references. It is a compile-time error to attempt to cast objects with dynamic_cast (eg, with dynamic_cast<Derived>(base))

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜