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