std::rethrow_exception
定义于头文件 <exception>
|
||
[[noreturn]] void rethrow_exception( std::exception_ptr p ) |
(C++11 起) | |
抛出先前捕获的异常对象,它为异常指针 p
所引用。
参数
p | - | 非空 std::exception_ptr |
返回值
(无)
示例
运行此代码
#include <iostream> #include <string> #include <exception> #include <stdexcept> void handle_eptr(std::exception_ptr eptr) // 按值传递 ok { try { if (eptr) { std::rethrow_exception(eptr); } } catch(const std::exception& e) { std::cout << "Caught exception \"" << e.what() << "\"\n"; } } int main() { std::exception_ptr eptr; try { std::string().at(1); // 这生成一个 std::out_of_range } catch(...) { eptr = std::current_exception(); // 捕获 } handle_eptr(eptr); } // std::out_of_range 的析构函数调用于此,在 ept 析构时
输出:
Caught exception "basic_string::at"
参阅
(C++11) |
用于处理异常对象的共享指针类型 (typedef) |
(C++11) |
捕获当前异常到 std::exception_ptr 之中 (函数) |