C++ Type_info 库 - bad_typeid


描述

它在 null 点的 typeid 上引发异常。

宣言

以下是 std::bad_typeid 的声明。

C++98

	
class bad_typeid;

C++11

class bad_typeid;

参数

没有任何

返回值

没有任何

例外情况

无抛出保证- 该成员函数永远不会抛出异常。

数据竞赛

区域设置对象已修改。

例子

在下面的 std::bad_typeid 示例中。

#include <iostream>
#include <typeinfo>
 
struct S {
   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';
   }
}

输出应该是这样的 -

Attempted a typeid of NULL pointer!
类型信息.htm