CppDS.com

C++ 98 11 14 17 20 手册

std::nested_exception::nested_exception

来自cppreference.com
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
 
 
nested_exception() noexcept;
(1) (C++11 起)
nested_exception( const nested_exception& other ) noexcept = default;
(2) (C++11 起)

构造新的 nested_exception 对象。

1) 默认构造函数。存储由调用 std::current_exception() 获得的异常对象于新的 nested_exception 对象。
2) 复制构造函数。以存储于 other 的异常初始化对象。

参数

other - 以之初始化内容的 nested_exception
关闭