std::_Exit - cppreference.com
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody>
| Elemento definito nell'header <cstdlib> |
||
|
|
(dal C++11) | |
Provoca terminazione normale programma a verificarsi senza completamente la pulizia delle risorse.
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.
Distruttori di variabili con automatici, durate Thread Local Storage e statici non sono chiamati. Funzioni passato a at_quick_exit() o atexit() non sono chiamati. Se le risorse aperte quali file sono chiusi è l'attuazione definiti. Se exit_code è EXIT_FAILURE, l'attuazione di un determinato status, che indica cessazione successo, viene restituito. In altri casi l'attuazione definito valore di stato viene restituito.
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.
Parametri
| exit_code | - | uscita di stato del programma Original: exit status of the program The text has been machine-translated via Google Translate. |
Valore di ritorno
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Eccezioni
Esempio
Vedi anche
causa chiusura anomala del programma (senza pulizia) Original: causes abnormal program termination (without cleaning up) The text has been machine-translated via Google Translate. (funzione) [modifica] | |
causa terminazione normale programma con la pulizia Original: causes normal program termination with cleaning up The text has been machine-translated via Google Translate. (funzione) [modifica] | |
C documentation for _Exit | |