Nota
O acesso a esta página requer autorização. Pode tentar iniciar sessão ou alterar os diretórios.
O acesso a esta página requer autorização. Pode tentar alterar os diretórios.
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).