std::_Exit
De cppreference.com
Déclaré dans l'en-tête <cstdlib>
|
||
[[noreturn]] void _Exit( int exit_code ); |
(depuis C++11) | |
Provoque l'arrêt du programme normal de se produire sans complètement 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 durées de fil, de stockage local et statique ne sont pas appelés. Fonctions passé à
at_quick_exit()
ou atexit()
ne sont pas appelés. Si les ressources ouvertes telles que les fichiers sont fermés dépend de l'implémentation. Si exit_code
est EXIT_FAILURE, une mise en œuvre définies par le statut, en indiquant' résiliation sans succès, est retourné. Dans d'autres cas définis par l'implémentation 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.
Sommaire |
[modifier] Paramètres
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. |
[modifier] 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.
[modifier] Exceptions
[modifier] Exemple
This section is incomplete Reason: no example |
[modifier] 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'arrêt 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
|