_Exit
De cppreference.com
![]() |
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
Definido en el archivo de encabezado <stdlib.h>
|
||
void _Exit( int exit_code ); |
(desde C99) | |
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] Ejemplo
Esta sección está incompleta Razón: sin ejemplo |
[editar] Ver también
causa la terminación anormal del programa (sin limpiarlo) (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) | |
Documentación de C++ para _Exit
|