次の方法で共有


error_code::operator!=

error_code オブジェクトが異なっているかどうかをテストします。

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

パラメーター

パラメーター

説明

_Right

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

戻り値

error_code オブジェクトが _Rightに渡される error_code オブジェクトと等しくないかどうかをtrue ; それ false

解説

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

必要条件

ヘッダー: <system_error>

名前空間: std

参照

関連項目

error_code クラス