Wyjątek bad_typeid
bad_typeid Wyjątek przez typeid operator po argumentu dla typeid jest wskaźnik NULL.
catch (bad_typeid)
statement
Uwagi
Interfejs dla bad_typeid jest:
class bad_typeid : public exception
{
public:
bad_typeid(const char * _Message = "bad typeid");
bad_typeid(const bad_typeid &);
virtual ~bad_typeid();
};
W poniższym przykładzie typeid rzuca operator bad_typeid wyjątku.
// 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;
}
}
Dane wyjściowe
Object is NULL