std::quick_exit
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>| definiert in Header <cstdlib>
|
||
[[noreturn]] void quick_exit( int exit_code ); |
(seit C++11) | |
Verursacht normalen Beendigung des Programms ohne komplette Reinigung der Ressourcen auftreten .
Original:
Causes normal program termination to occur without completely cleaning the resources.
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.
Funktionen übergeben std::at_quick_exit werden in umgekehrter Reihenfolge ihrer Anmeldung genannt. Wenn eine Ausnahme versucht propagieren aus einem der Funktion wird std::terminate genannt. Nach dem Aufruf der registrierten Funktionen, ruft
std::_Exit(exit_code)Original:
Functions passed to std::at_quick_exit are called in reverse order of their registration. If an exception tries to propagate out of any of the function, std::terminate is called. After calling the registered functions, calls
std::_Exit(exit_code)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.
Parameter
| exit_code | - | Exit-Status des Programms
Original: exit status of the program The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
(None)
Original:
(none)
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.
Ausnahmen
Beispiel
| This section is incomplete Reason: no example |
