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,则 _Left 中传递对象与传入的 _Right对象不相等;为 false

备注

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

请参见

参考

<system_error>