std::error_category::operator==,!=,<
De cppreference.com
< cpp | error | error category
![]() |
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. |
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 catégorie 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)
Vérifie si *this et
rhs
référence à l'objet même .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)
Vérifie si *this et
rhs
ne se réfèrent pas au même 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.
[modifier] Paramètres
code | - | spécifie 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 | - | spécifie 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. |
[modifier] Retourne la valeur
1)
true si *this et
rhs
référence à l'objet même, 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 réfèrent pas au même 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 inférieure à
rhs
tel que défini 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.