次の方法で共有


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

非等値をテストするオブジェクト。

戻り値

_Left で渡されるオブジェクトが _Rightで渡されるオブジェクトと等しくないtrue ; それ false

解説

この関数は !(_Left == _Right)を返します。

参照

関連項目

<system_error>