Espaces de noms
Variantes
Affichages
Actions

std::error_category::operator==,!=,<

De cppreference.com

 
 
 
Erreur de manipulation
La gestion des exceptions
Original:
Exception handling
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
exception
uncaught_exception
exception_ptr (C++11)
make_exception_ptr (C++11)
current_exception (C++11)
rethrow_exception (C++11)
nested_exception (C++11)
throw_with_nested (C++11)
rethrow_if_nested (C++11)
Défaillances de gestion des exceptions
Original:
Exception handling failures
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
terminate
terminate_handler
get_terminate (C++11)
set_terminate
unexpected (obsolète)
bad_exception
unexpected_handler (obsolète)
get_unexpected (C++11) (obsolète)
set_unexpected (obsolète)
Catégories d'exception
Original:
Exception categories
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
logic_error
invalid_argument
domain_error
length_error
out_of_range
runtime_error
range_error
overflow_error
underflow_error
Les codes d'erreur
Original:
Error codes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Les codes d'erreur
errno
Les assertions
Original:
Assertions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
assert
system_error installation
Original:
system_error facility
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
error_category (C++11)
generic_category (C++11)
system_category (C++11)
error_condition (C++11)
errc (C++11)
error_code (C++11)
system_error (C++11)
 
std::error_category
Les fonctions membres
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
error_category::error_category
error_category::~error_category
error_category::name
error_category::default_error_condition
error_category::equivalent
error_category::message
error_category::operator==
error_category::operator!=
error_category::operator<
 
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.
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.
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.
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.

[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.
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.
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.

[modifier] Exceptions

noexcept specification:  
noexcept
   (depuis C++11)