error_condition::operator! =

error_condition のオブジェクトの非等値のテスト。

bool operator!=(const error_condition& _Right) const;

パラメーター

パラメーター

説明

_Right

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

戻り値

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

解説

このメンバー演算子は、!(*this == _Right) を返します。

必要条件

ヘッダー: <system_error>

名前空間: std

参照

関連項目

error_condition Class