bad_typeid-Ausnahme
Die bad_typeid Ausnahme wird von Operator typeid ausgelöst, wenn der Operand für typeid ein NULL-Zeiger ist.
catch (bad_typeid)
statement
Hinweise
Die Schnittstelle für bad_typeid ist:
class bad_typeid : public exception
{
public:
bad_typeid(const char * _Message = "bad typeid");
bad_typeid(const bad_typeid &);
virtual ~bad_typeid();
};
Im folgenden Beispiel wird der typeid-Operator an, der eine bad_typeid Ausnahme auslöst.
// 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;
}
}
Output
Object is NULL