std::_Exit
De cppreference.com
<tbody>
</tbody>
| Dclar dans l'en-tte <cstdlib>
|
||
[[noreturn]] void _Exit( int exit_code ); |
(depuis C++11) | |
Provoque l'arrt du programme normal de se produire sans compltement nettoyer les ressources .
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.
Les destructeurs des variables automatiques avec des dures de fil, de stockage local et statique ne sont pas appels. Fonctions pass
at_quick_exit() ou atexit() ne sont pas appels. Si les ressources ouvertes telles que les fichiers sont ferms dpend de l'implmentation. Si exit_code est EXIT_FAILURE, une mise en uvre dfinies par le statut, en indiquant' rsiliation sans succs, est retourn. Dans d'autres cas dfinis par l'implmentation valeur d'tat est retourn . 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.
Paramtres
| exit_code | - | quitter l'tat du programme
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. |
Retourne la valeur
(Aucun)
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.
Exceptions
Exemple
| This section is incomplete Reason: no example |
Voir aussi
provoque la terminaison anormale du programme (sans nettoyage) 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. (fonction) | |
provoque l'arrt du programme normal avec le nettoyage 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. (fonction) | |
C documentation for _Exit
| |