std::error_code::operator=
来自cppreference.com
< cpp | error | error code
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template< class ErrorCodeEnum > error_code& operator=( ErrorCodeEnum e ); |
(C++11 起) | |
替换的错误代码和相应的类别与那些代表错误代码枚举
e
. 原文:
Replaces the error code and corresponding category with those representing error code enum
e
. 相当于*this = std::make_error_code(e)。过载参与在重载决议只有std::is_error_code_enum<ErrorCodeEnum>::value == true.
原文:
Equivalent to *this = std::make_error_code(e). The overload participates in overload resolutions only if std::is_error_code_enum<ErrorCodeEnum>::value == true.
目录 |
[编辑] 参数
e | - | 错误代码枚举建设
|
[编辑] 返回值
*this
[编辑] 例外
[编辑] 注释
隐式定义拷贝赋值运算符.
原文:
Copy-assignment operator is defined implicitly.
[编辑] 另请参阅
给其他错误代码 (公共成员函数) |