std::make_exception_ptr
来自 cppreference.com
定义在头文件 <exception> 中 |
||
template< class E > std::exception_ptr make_exception_ptr( E e ) noexcept; |
(自 C++11 起) | |
创建 std::exception_ptr,它保存对 e 的副本的引用。这就像执行以下代码一样
try { throw e; } catch(...) { return std::current_exception(); }
内容 |
[编辑] 参数
e | - | 要创建对副本引用的异常对象 |
[编辑] 返回值
一个 std::exception_ptr 实例,它保存对 e 的副本的引用,或对 std::bad_alloc 实例的引用,或对 std::bad_exception 实例的引用(见 std::current_exception)。
[编辑] 注意
参数按值传递,并且会进行切片。
[编辑] 示例
本节尚未完善 原因:没有示例 |
[编辑] 参见
(C++11) |
在 std::exception_ptr 中捕获当前异常 (函数) |