std::make_exception_ptr
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <exception> 中定义
|
||
template< class E > std::exception_ptr make_exception_ptr( E e ) |
(C++11 起) | |
创建一个std::exception_ptr
e
的副本保存了一个引用,如果通过执行原文:
Creates an std::exception_ptr that holds a reference to a copy of
e
, as if by executingtry {
throw e;
} catch(...) {
return std::current_exception();
}
目录 |
[编辑] 参数
(无)
[编辑] 返回值
一个实例std::exception_ptr参考
e
的副本,或实例std::bad_alloc的一个实例std::bad_exception(见std::current_exception).原文:
An instance of std::exception_ptr holding a reference to the copy of
e
, or to an instance of std::bad_alloc or to an instance of std::bad_exception (see std::current_exception).[编辑] 例外
[编辑] 另请参阅
(C++11) |
captures the current exception in a std::exception_ptr (函数) |