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) | (depuis C++11) |
bool operator!=( const error_category& rhs ) const; |
(2) | (depuis C++11) |
bool operator<( const error_category& rhs ) const; |
(1) | (depuis C++11) |
Compare une autre catgorie d'erreur .
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)
Vrifie si
*this et rhs rfrence l'objet mme .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)
Vrifie si
*this et rhs ne se rfrent pas au mme objet .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)
Commandes
*this et rhs par l'ordre de this et &rhs. Equivalent 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.
Paramtres
| code | - | spcifie le code d'erreur comparer
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 | - | spcifie la condition d'erreur comparer
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. |
Retourne la valeur
1)
true si *this et rhs rfrence l'objet mme, false autrement .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 si *this et rhs ne se rfrent pas au mme objet, false autrement .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 si *this est infrieure rhs tel que dfini par l'ordre de this et &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.