std::error_code::operator=
来自 cppreference.com
< cpp | error | error code
template< class ErrorCodeEnum > error_code& operator=( ErrorCodeEnum e ) noexcept; |
(1) | (自 C++11 起) |
error_code& operator=( const error_code& other ) = default; |
(2) | (自 C++11 起) (隐式声明) |
error_code& operator=( error_code&& other ) = default; |
(3) | (自 C++11 起) (隐式声明) |
1) 用代表错误代码枚举 e 的错误代码和相应类别替换错误代码和相应类别。
等效于 *this = make_error_code(e),其中 make_error_code
仅通过 依赖于参数的查找 找到。
2,3) 隐式定义的复制赋值运算符和移动赋值运算符将 other 的内容赋值给 *this。
内容 |
[编辑] 参数
e | - | 用于构造的错误代码枚举 |
other | - | 要赋值的其他错误代码 |
[编辑] 返回值
*this
[编辑] 缺陷报告
以下更改行为的缺陷报告被追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确的行为 |
---|---|---|---|
LWG 3629 | C++11 | 仅使用 std::make_error_code 重载 |
使用 ADL 找到的重载 |
[编辑] 另请参阅
分配另一个错误代码 (公有成员函数) |