bad_typeid 예외
bad_typeid 는 예외를 throw 하 여는 typeid 연산자 때 피연산자에 대 한 typeid 은 NULL 포인터입니다.
catch (bad_typeid)
statement
설명
인터페이스에 대 한 bad_typeid 입니다.
class bad_typeid : public exception
{
public:
bad_typeid(const char * _Message = "bad typeid");
bad_typeid(const bad_typeid &);
virtual ~bad_typeid();
};
다음 예제는 typeid 연산자를 throw 하는 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;
}
}
Output
Object is NULL