std::_Exit
De 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. |
| Defined in header <cstdlib>
|
||
| [[noreturn]] void _Exit( int exit_code ); |
(ya que C + +11) | |
Causas de terminación normal del programa se produzca sin limpiar completamente los 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.
Los destructores de las variables con duraciones automáticos, almacenamiento local de subprocesos y estáticas no son llamados. Funciones pasó a
at_quick_exit() o atexit() no son llamados. Si los recursos abiertos, como los archivos se cierran de la implementación. Si exit_code es EXIT_FAILURE, una aplicación definida por el estado, lo que indica la terminación' éxito, se devuelve. En otros casos la aplicación definida por el valor de estado se devuelve . 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.
Contenido |
[editar] Parámetros
| exit_code | - | salir del estado del 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. |
[editar] Valor de retorno
(Ninguno)
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.
[editar] Excepciones
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver también
| produce la terminación anormal del programa (sin limpiar) 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. (función) | |
| produce la terminación normal del programa de limpieza 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. (función) | |
| C documentation for _Exit
| |