std::_Exit
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 <cstdlib> | ||
[[noreturn]]void _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.
Destruktoren von Variablen mit automatischer, Gewinde lokalen und statischen Speicher Dauern werden nicht aufgerufen. Funktionen übergeben
at_quick_exit()
oder atexit()
werden nicht aufgerufen. Ob offen Ressourcen wie Dateien geschlossen sind ist die Umsetzung definiert. Wenn exit_code
ist EXIT_FAILURE, eine Implementierung definiert Status, der angibt,' erfolglosen Beendigung zurückgegeben. In anderen Fällen Implementierung definierten Zustand zurückgegeben wird . Original:
Destructors of variables with automatic, thread local and static storage durations are not called. Functions passed to
at_quick_exit()
or atexit()
are not called. Whether open resources such as files are closed is implementation defined. If exit_code
is EXIT_FAILURE, an implementation-defined status, indicating unsuccessful termination, is returned. In other cases implementation-defined status value is returned. 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]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. |
[Bearbeiten]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.
[Bearbeiten]Ausnahmen
[Bearbeiten]Beispiel
This section is incomplete Reason: no example |
[Bearbeiten]Siehe auch
verursacht abnormale Beendigung des Programms (ohne Reinigung) Original: causes abnormal program termination (without cleaning up) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
verursacht normale Beendigung des Programms mit dem Aufräumen Original: causes normal program termination with cleaning up The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
C documentation for _Exit |