命名空间
变体
操作

std::bad_exception

来自 cppreference.com
< cpp‎ | error
 
 
实用程序库
语言支持
类型支持 (基本类型,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)

 
 
 
定义在头文件 <exception>
class bad_exception;

std::bad_exception 是 C++ 运行时在以下情况下抛出的异常的类型

  • 如果 std::exception_ptr 存储了捕获异常的副本,并且如果 std::current_exception 捕获的异常对象的复制构造函数抛出异常,则捕获的异常是 std::bad_exception 的实例。
(自 C++11 起)
  • 如果 动态异常说明 被违反,并且 std::unexpected 抛出或重新抛出仍然违反异常说明的异常,但异常说明允许 std::bad_exception,则会抛出 std::bad_exception
(C++17 之前)
cpp/error/exceptionstd-bad exception-inheritance.svg

继承图

内容

[编辑] 成员函数

构造 bad_exception 对象
(公共成员函数)
复制对象
(公共成员函数)
[虚函数]
返回解释性字符串
(虚公共成员函数)

std::exception 继承而来

成员函数

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

[编辑] 示例

仅在 C++14 或更早模式下编译(可能会发出警告)。

#include <exception>
#include <iostream>
#include <stdexcept>
 
void my_unexp()
{
    throw;
}
 
void test()
    throw(std::bad_exception) // Dynamic exception specifications
                              // are deprecated in C++11
{
    throw std::runtime_error("test");
}
 
int main()
{
    std::set_unexpected(my_unexp); // Deprecated in C++11, removed in C++17
 
    try
    {
        test();
    }
    catch (const std::bad_exception& e)
    {
        std::cerr << "Caught " << e.what() << '\n';
    }
}

可能的输出

Caught std::bad_exception