次の方法で共有


error_code::operator<

error_code のオブジェクトがある場合、比較のために渡されます error_code のオブジェクトより小さいテスト。

bool operator<(const error_code& _Right) const;

パラメーター

パラメーター

説明

_Right

比較する error_code のオブジェクト。

戻り値

error_code のオブジェクトがある場合、比較のために渡されます error_code のオブジェクトより小さいtrue ; それ以外 false

解説

このメンバー演算子は、category() < _Right.category() || category() == _Right.category() && value < _Right.value() を返します。

必要条件

ヘッダー: <system_error>

名前空間: std

参照

関連項目

error_code Class