命名空间
变体
操作

std::make_exception_ptr

来自 cppreference.com
< cpp‎ | error
定义在头文件 <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)。

[编辑] 注意

参数按值传递,并且会进行切片。

[编辑] 示例

[编辑] 参见

std::exception_ptr 中捕获当前异常
(函数) [编辑]