error_code::operator!=

不相等性测试在 error_code 对象之间。

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

参数

参数

说明

_Right

为不相等要测试的对象。

返回值

trueerror_code 对象,则与 _Right中传递的 error_code 对象不相等;为 false

备注

成员运算符返回 !(*this == _Right)。

要求

标头: <system_error>

命名空间: std

请参见

参考

error_code 类