Nota:
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
Tests if the object on the left side of the operator is not equal to the object on the right side.
bool operator!=(const error_code& _Left, const error_condition& _Right);
bool operator!=(const error_condition& _Left, const error_code& _Right);
Parameters
Parameter |
Description |
|---|---|
_Left |
The object to be tested for inequality. |
_Right |
The object to be tested for inequality. |
Return Value
true if the object passed in _Left is not equal to the object passed in _Right; otherwise false.
Remarks
This function returns !(_Left == _Right).