cpp/error/error code/make error code: Unterschied zwischen den Versionen
Aus cppreference.com
< cpp | error | error code
(Translated from the English version using Google Translate) |
P12bot (Diskussion | Beiträge) K (Use {{lc}}. Update links. Various fixes.) |
||
(2 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
Zeile 11: | Zeile 11: | ||
===Parameter=== | ===Parameter=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| e |{{tr| Fehlercode enum zu Fehlercode erstellen| error code enum to create error code for}}}} |
− | {{ | + | {{end}} |
===Rückgabewert=== | ===Rückgabewert=== | ||
Zeile 20: | Zeile 20: | ||
===Ausnahmen=== | ===Ausnahmen=== | ||
{{noexcept}} | {{noexcept}} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
Aktuelle Version vom 1. Juli 2013, 20:02 Uhr
![]() |
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>
|
||
error_code make_error_code( std::errc e ); |
(seit C++11) | |
Erstellt Fehlercode Wert für ERRC enum
e
.Original:
Creates error code value for errc enum
e
.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.
Entspricht error_code(static_cast<int>(e), generic_category())
Original:
Equivalent to error_code(static_cast<int>(e), generic_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.
[Bearbeiten] Parameter
e | - | Fehlercode enum zu Fehlercode erstellen
Original: error code enum to create error code for The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten] Rückgabewert
Fehlercode entspricht
e
.Original:
Error code corresponding to
e
.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.