CppDS.com

C++ 98 11 14 17 20 手册

std::error_code::operator=

来自cppreference.com
< cpp‎ | error‎ | error code
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (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)
 
 
 
template< class ErrorCodeEnum >
error_code& operator=( ErrorCodeEnum e ) noexcept;
(C++11 起)

以表示错误码枚举 e 者替换错误码和对应类别。

等价于 *this = make_error_code(e) ,其中以无限定调用 make_error_code 以启用参数依赖查找。重载仅若 std::is_error_code_enum<ErrorCodeEnum>::value == true 才参与重载决议。

参数

e - 要构造的错误码枚举

返回值

*this

注解

复制赋值运算符为隐式定义。

参阅

赋值为另一 error_code
(公开成员函数)
关闭