I want to know the runtime type of a base class pointer, I know you can use dynamic_cast. is there any better way?
|
|
dynamic_cast will only confirm your guess, and even that is not perfect. If C inherits from B which inherits from A, So, the biq question that remains is what your real goal is. In proper OO design, you should never need to know about the unbounded set of types that can be derived from a base type. |
|||
|
|
The Also have a look at the Performance of typeid vs dynamic_cast<> tip over at devx.com. |
||
|
|
