C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- std::exception_ptr
- std::error_code
- std::error_condition
- std::terminate
- std::exception
- std::current_exception
- std::rethrow_exception
- std::make_exception_ptr
- std::unexpected
- std::uncaught_exception, std::uncaught_exceptions
- assert
- errno
- std::nested_exception
- std::throw_with_nested
- std::rethrow_if_nested
- std::terminate_handler
- std::get_terminate
- std::set_terminate
- std::bad_exception
- std::unexpected_handler
- std::get_unexpected
- std::set_unexpected
- 错误号
- std::logic_error
- std::invalid_argument
- std::domain_error
- std::length_error
- std::out_of_range
- std::runtime_error
- std::range_error
- std::overflow_error
- std::underflow_error
- std::tx_exception
- std::error_category
- std::generic_category
- std::system_category
- std::errc
- std::system_error
- 注释
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::uncaught_exception, std::uncaught_exceptions
定义于头文件 <exception>
|
||
(1) | ||
bool uncaught_exception() throw(); |
(C++11 前) | |
bool uncaught_exception() noexcept; |
(C++11 起) (C++17 中弃用) (C++20 中移除) |
|
int uncaught_exceptions() noexcept; |
(2) | (C++17 起) |
1) 检测当前线程是否有生存的异常对象,即被抛出或重抛出且未进入匹配的 catch 子句、 std::terminate 或 std::unexpected 的异常。换言之,
std::uncaught_exception
检测当前是否在进行栈回溯。2) 检测当前线程已经抛出或重抛出且未进入其匹配 catch 子句的异常对象数。
有时抛出异常是安全的,即使当 std::uncaught_exception() == true 。例如,若栈回溯导致要析构对象,则该对象的析构函数可以运行抛出异常的代码,只要在离开析构函数前为某 catch 块捕捉该异常。
参数
(无)
返回值
1) 若此线程中当前正在进行栈回溯则为 true 。
2) 当前线程中的为捕捉异常对象数。
注意
返回 int 的 uncaught_exceptions
的一个使用例子是 boost.log 库:表达式 BOOST_LOG(logger) << foo(); 首先创建保障对象并记录其构造函数中的未捕捉异常数。由保障对象的析构函数进行输出,除非 foo() 抛出(该情况下析构函数中未捕捉异常的数量大于构造函数所观察到的)
示例
运行此代码
#include <iostream> #include <exception> #include <stdexcept> struct Foo { int count = std::uncaught_exceptions(); ~Foo() { std::cout << (count == std::uncaught_exceptions() ? "~Foo() called normally\n" : "~Foo() called during stack unwinding\n"); } }; int main() { Foo f; try { Foo f; std::cout << "Exception thrown\n"; throw std::runtime_error("test exception"); } catch (const std::exception& e) { std::cout << "Exception caught: " << e.what() << '\n'; } }
输出:
Exception thrown ~Foo() called during stack unwinding Exception caught: test exception ~Foo() called normally
参阅
异常处理失败时调用的函数 (函数) | |
(C++11) |
用于处理异常对象的共享指针类型 (typedef) |
(C++11) |
捕获当前异常到 std::exception_ptr 之中 (函数) |