Top "Typeid" questions

Checking the object type in C++11

I have class B that inherits from A. class A { }; class B : public A { }; And I have three objects. A* …

c++ c++11 rtti typeid
When is using 'typeid' the best solution?

There are many reasons not to use typeid. Other than for using members of type_info (implementation defined behavior), it …

c++ typeid