CppDS.com

C++ 98 11 14 17 20 手册

std::error_condition::error_condition

来自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)
 
 
 
error_condition() noexcept;
(1) (C++11 起)
error_condition( const error_condition& other ) noexcept;
(2) (C++11 起)
(隐式声明)
error_condition( int val, const error_category& cat ) noexcept;
(3) (C++11 起)
template< class ErrorConditionEnum >
error_condition( ErrorConditionEnum e ) noexcept;
(4) (C++11 起)

构造新的 error_condition 。

1) 默认构造函数。初始化 error_condition 为 generic_category 和错误码 0
2) 复制构造函数。以 other 的内容初始化 error_condition 。
3) 以错误码 val 和错误类别 cat 初始化 error_condition 。
4) 以枚举 e 初始化 error_condition 。等效于调用 make_error_condition() 。除非 is_error_condition_enum<ErrorConditionEnum>::valuetrue ,否则不参与重载决议。

参数

other - 以之初始化的另一 error_condition
val - 错误码
cat - 错误类别
e - 错误条件枚举

参阅

构造 std::errc 错误条件
(函数)
构造一个 iostream error_condition
(函数)
构造一个 future error_condition
(函数)
关闭