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 之中 (函数) |