exception de bad_typeid
L'exception d' bad_typeid est levée par opérateur de typeid lorsque l'opérande pour typeid est un pointeur null.
catch (bad_typeid)
statement
Notes
l'interface pour bad_typeid est :
class bad_typeid : public exception
{
public:
bad_typeid(const char * _Message = "bad typeid");
bad_typeid(const bad_typeid &);
virtual ~bad_typeid();
};
L'exemple suivant illustre l'opérateur d' typeid levant une exception d' bad_typeid .
// expre_bad_typeid.cpp
// compile with: /EHsc /GR
#include <typeinfo.h>
#include <iostream>
class A{
public:
// object for class needs vtable
// for RTTI
virtual ~A();
};
using namespace std;
int main() {
A* a = NULL;
try {
cout << typeid(*a).name() << endl; // Error condition
}
catch (bad_typeid){
cout << "Object is NULL" << endl;
}
}
Sortie
Object is NULL