std::make_exception_ptr
来自cppreference.com
定义于头文件 <exception>
|
||
template< class E > std::exception_ptr make_exception_ptr( E e ) noexcept; |
(C++11 起) | |
创建一个保有到 e
副本的引用的 std::exception_ptr 。这如同以下列代码执行:
try { throw e; } catch(...) { return std::current_exception(); }
目录 |
[编辑] 参数
(无)
[编辑] 返回值
保有到 e
副本,或到 std::bad_alloc 实例,或到 std::bad_exception 实例的引用的 std::exception_ptr 实例(参阅 std::current_exception )。
[编辑] 注意
参数按值传递,并受切片影响。
[编辑] 参阅
(C++11) |
在 std::exception_ptr 中捕获当前异常 (函数) |