命名空间
变体
操作

std::bad_typeid

来自 cppreference.com
< cpp‎ | types
 
 
实用程序库
语言支持
类型支持 (基本类型、RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
类型支持
基本类型
固定宽度整数类型 (C++11)
固定宽度浮点类型 (C++23)
(C++11)    
(C++17)
数值限制
C 数值限制接口
运行时类型信息
bad_typeid
 
定义在头文件 <typeinfo>
class bad_typeid : public std::exception;

typeid 运算符应用于多态类型的解引用空指针值时,会抛出此类型的异常。

cpp/error/exceptionstd-bad typeid-inheritance.svg

继承关系图

内容

[编辑] 成员函数

(构造函数)
构造一个新的 bad_typeid 对象
(公共成员函数)
operator=
替换 bad_typeid 对象
(公共成员函数)
what
返回解释性字符串
(公共成员函数)

std::bad_typeid::bad_typeid

(1)
bad_typeid() throw();
(直到 C++11)
bad_typeid() noexcept;
(自 C++11 起)
(2)
bad_typeid( const bad_typeid& other ) throw();
(直到 C++11)
bad_typeid( const bad_typeid& other ) noexcept;
(自 C++11 起)

使用一个实现定义的以 null 结尾的字节字符串构造一个新的 bad_typeid 对象,该字符串可以通过 what() 访问。

1) 默认构造函数。
2) 复制构造函数。 如果 *thisother 都是动态类型 std::bad_typeid,则 std::strcmp(what(), other.what()) == 0.(自 C++11 起)

参数

other - 要复制的另一个异常对象

std::bad_typeid::operator=

bad_typeid& operator=( const bad_typeid& other ) throw();
(直到 C++11)
bad_typeid& operator=( const bad_typeid& other ) noexcept;
(自 C++11 起)

使用 other 的内容进行赋值。 如果 *thisother 都是动态类型 std::bad_typeid,则赋值后 std::strcmp(what(), other.what()) == 0.(自 C++11 起)

参数

other - 要赋值的另一个异常对象

返回值

*this

std::bad_typeid::what

virtual const char* what() const throw();
(直到 C++11)
virtual const char* what() const noexcept;
(自 C++11 起)

返回解释性字符串。

参数

(无)

返回值

指向包含解释性信息的以 null 结尾的字符串的指针。该字符串适合转换为 std::wstring 并显示为该字符串。该指针保证至少在获取它的异常对象销毁之前或在异常对象上的非 const 成员函数(例如复制赋值运算符)被调用之前有效。

注释

实现允许但不要求覆盖 what()

std::exception 继承

成员函数

销毁异常对象
(std::exception 的虚拟公共成员函数) [编辑]
[virtual]
返回解释性字符串
(std::exception 的虚拟公共成员函数) [编辑]

[编辑] 示例

#include <iostream>
#include <typeinfo>
 
struct S // The type has to be polymorphic
{
    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!