std::operator==,!=,<<div class="t-tr-text">(性病:: ERROR_CODE)<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">原文:</div><div class="t-tr-dropdown-orig">(std::error_code)</div><div class="t-tr-dropdown-notes">这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。<br/>您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。</div></div></div></div></div>
来自cppreference.com
< cpp | error | error code
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <system_error> 中定义
|
||
bool operator==( const error_code& lhs, const error_code& rhs ); |
(1) | (C++11 起) |
bool operator!=( const error_code& lhs, const error_code& rhs ); |
(1) | (C++11 起) |
bool operator<( const error_code& lhs, const error_code& rhs ); |
(1) | (C++11 起) |
比较两个错误代码对象.
1)
比较
lhs
和rhs
平等.2)
比较
lhs
和rhs
平等.3)
检查是否
lhs
小于rhs
. 原文:
Checks whether
lhs
is less than rhs
. 目录 |
[编辑] 参数
lhs, rhs | - | 错误代码进行比较
|
[编辑] 返回值
1)
true如果错误类别和错误值相等的
|true if the error category and error value compare equal}}.}}2)
true如果错误类别或错误值比较,是不相等
|true if the error category or error value compare are not equal}}}}3)
truelhs.category() < rhs.category()。否则,truelhs.category() == rhs.category() && lhs.value() < rhs.value()。否则,false
原文:
true if lhs.category() < rhs.category(). Otherwise, true if lhs.category() == rhs.category() && lhs.value() < rhs.value(). Otherwise, false
[编辑] 例外
[编辑] 例外
[编辑] 另请参阅
获取此ERROR_CODE error_category 原文: obtains the error_category for this error_code (公共成员函数) |