std::experimental::scope_fail<EF>::~scope_fail
来自cppreference.com
< cpp | experimental | scope fail
~scope_fail() noexcept; |
(库基础 TS v3) | |
调用退出函数,若 std::uncaught_exceptions() 的结果大于未捕捉异常计数(常在栈回溯时)且 scope_fail
活跃,然后销毁存储的 EF
(若它为异常对象)与任何其他非静态数据成员。
注解
是否在栈回溯时调用析构函数可由比较 std::uncaught_exceptions() 的结果与 scope_fail
中的未捕捉异常计数器检测。
参阅
使 scope_fail 不活跃 (公开成员函数) |