std::quick_exit
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cstdlib>
|
||
[[noreturn]] void quick_exit( int exit_code ); |
(desde C++11) | |
Causas término do programa normal ocorrer sem completamente a limpeza dos recursos.
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.
Funções passado para std::at_quick_exit são chamados na ordem inversa da sua inscrição. Se uma exceção tenta propagar fora de qualquer uma das funções, std::terminate é chamado. Depois de chamar as funções registadas, chama
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.
Parâmetros
| exit_code | - | estado de saída do programa
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. |
Valor de retorno
(Nenhum)
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.
Exceções
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
