std::make_exception_ptr
来自 cppreference.cn
定义于头文件 <exception> |
||
template< class E > std::exception_ptr make_exception_ptr( E e ) noexcept; |
(C++11 起) (C++26 起为 constexpr) |
|
创建一个 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)。
[编辑] 注意
参数按值传递,并且会发生切片。
特性测试宏 | 值 | 标准 | 特性 |
---|---|---|---|
__cpp_lib_constexpr_exceptions |
202411L |
(C++26) | 异常类型的 constexpr |
[编辑] 示例
本节不完整 原因:无示例 |
[编辑] 另请参阅
(C++11) |
将当前异常捕获到 std::exception_ptr 中 (函数) |