operator!= (<system_error>)

如果在运算符左侧的对象与右侧,的对象不相等测试。

bool operator!=(const error_code& _Left, const error_condition& _Right);
bool operator!=(const error_condition& _Left, const error_code& _Right);

参数

Parameter

说明

_Left

对于不相等要测试的对象。

_Right

对于不相等要测试的对象。

返回值

true,如果在 _Left 传递的对象与 _Right传递的对象不相等;否则 false

备注

此函数返回 !(_Left == _Right)。

请参见

参考

<system_error>