共用方式為


operator< (<system_error>)

測試,則物件會提供透過比較的物件。

template<class _Enum> inline bool operator<(
    _Enum _Left,
    typename tr1::enable_if<is_error_code_enum<_Enum>::value,
    const error_code&>::type _Right);
template<class _Enum> inline bool operator<(
    typename tr1::enable_if<is_error_code_enum<_Enum>::value,
    const error_code&>::type _Left, _Enum _Right);
template<class _Enum> inline bool operator<(
    _Enum _Left,
    typename tr1::enable_if<is_error_condition_enum<_Enum>::value,
    const error_condition&>::type _Right);
template<class _Enum> inline bool operator<(
    typename tr1::enable_if<is_error_condition_enum<_Enum>::value,
    const error_condition&>::type _Left, _Enum _Right);

參數

參數

描述

_Left

要比較的物件。

_Right

要比較的物件。

傳回值

true ,如果在 _Left 傳遞的物件比 _Right傳遞的物件為較少,否則, false

備註

這個函式會測試錯誤順序。

需求

標題: <system_error>

命名空間: std

請參閱

參考

<system_error>