std::error_category::operator==,!=,<
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> bool operator==( const error_category& rhs ) const; |
(1) | (desde C++11) |
bool operator!=( const error_category& rhs ) const; |
(2) | (desde C++11) |
bool operator<( const error_category& rhs ) const; |
(1) | (desde C++11) |
Compara a outra categoria de erro.
Original:
Compares to another error category.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Verifica se
*this e rhs se referem ao mesmo objeto.Original:
Checks whether
*this and rhs refer to the same object.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
Verifica se
*this e rhs não se referem ao mesmo objeto.Original:
Checks whether
*this and rhs do not refer to the same object.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
Ordens
*this e rhs pela ordem de this e &rhs. Equivalente a std::less<const error_category*>()(this, &rhs).Original:
Orders
*this and rhs by the order of this and &rhs. Equivalent to std::less<const error_category*>()(this, &rhs).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parâmetros
| code | - | especifica o código de erro para comparar
Original: specifies the error code to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| condition | - | especifica a condição de erro para comparar
Original: specifies the error condition to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
1)
true se *this e rhs referem-se ao mesmo objeto, false outra forma.Original:
true if *this and rhs refer to the same object, false otherwise.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
true se *this e rhs não se referem ao mesmo objeto, caso contrário false.Original:
true if *this and rhs do not refer to the same object, false otherwise.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
true se *this é inferior rhs como definida pela ordem de this e &rhs.Original:
true if *this is less than rhs as defined by the order of this and &rhs.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.