operator!= (<system_error>)
測試,如果左側的物件等於右邊的物件不相等。
bool operator!=(const error_code& _Left, const error_condition& _Right);
bool operator!=(const error_condition& _Left, const error_code& _Right);
參數
參數 |
描述 |
---|---|
_Left |
指定不要測試是否相等的物件。 |
_Right |
指定不要測試是否相等的物件。 |
傳回值
true ,如果在 _Left 傳遞的物件與 _Right傳入的物件不相等則為,否則 false。
備註
這個函式會傳回 !(_Left == _Right)。