Defined in header <typeinfo> | ||||
---|---|---|---|---|
|
An exception of this type is thrown when a typeid
operator is applied to a dereferenced null pointer value of a polymorphic type.
Inheritance diagram.
Member functions
constructs a new bad_typeid object (public member function) |
Inherited from std::exception
Member functions
(destructor)
[virtual] | destructs the exception object (virtual public member function of std::exception ) |
[virtual] | returns an explanatory string (virtual public member function of std::exception ) |
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #include <iostream> #include <typeinfo> struct S { // The type has to be polymorphic virtual void f(); }; int main() { S* p = nullptr; try { std::cout << typeid (*p).name() << '\n' ; } catch ( const std::bad_typeid& e) { std::cout << e.what() << '\n' ; } } |
Output:
1 | Attempted a typeid of NULL pointer! |
Please login to continue.