std::error_condition
Aus 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. |
definiert in Header <system_error>
|
||
class error_condition; |
(seit C++11) | |
std::error_condition
ist eine Plattform-unabhängige Fehlercode. Wie std::error_code wird eindeutig durch eine ganze Zahl und eine std::error_category identifiziert, aber im Gegensatz std::error_code, ist der Wert nicht plattformabhängigen .Original:
std::error_condition
is a platform-independent error code. Like std::error_code, it is uniquely identified by an integer value and a std::error_category, but unlike std::error_code, the value is not platform-dependent.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.
Eine typische Implementierung enthält ein Integer-Teil (der Wert) und einen Zeiger auf ein std::error_category .
Original:
A typical implementation holds one integer data member (the value) and a pointer to an std::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.
Inhaltsverzeichnis |
[Bearbeiten] Member-Funktionen
konstruiert eine error_condition Original: constructs an error_condition The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
ersetzt den Inhalt eines error_condition Original: replaces the contents of an error_condition The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
ersetzt den Inhalt eines error_condition Original: replaces the contents of an error_condition The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
setzt die error_condition auf den Wert 0 in generic_category Original: sets the error_condition to value 0 in generic_category The text has been machine-translated via |