error_code::operator==
相等性测试在 error_code 对象之间。
bool operator==(const error_code& _Right) const;
参数
参数 |
说明 |
---|---|
_Right |
提供相等要测试的对象。 |
返回值
true,如果对象相等;false,则对象不等于。
备注
成员运算符返回 category() == _Right.category() && value == _Right.value()。
要求
标头: <system_error>
命名空间: std