10
C ++中的dynamic_cast和static_cast
我dynamic_cast对C ++中的关键字非常困惑。 struct A { virtual void f() { } }; struct B : public A { }; struct C { }; void f () { A a; B b; A* ap = &b; B* b1 = dynamic_cast<B*> (&a); // NULL, because 'a' is not a 'B' B* b2 = …
155
c++
dynamic-cast