std::gmtime
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 <ctime>
|
||
std::tm* gmtime( const time_t* time ); |
||
Convierte dado tiempo desde época tan std::time_t valor en el tiempo del calendario, expresado en hora universal coordinada (UTC) .
Original:
Converts given time since epoch as std::time_t value into calendar time, expressed in Coordinated Universal Time (UTC).
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
time | - | puntero a un objeto de time_t para convertir
Original: pointer to a time_t object to convert 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
Puntero a un objeto estático std::tm interna en caso de éxito, o de lo contrario NULL. La estructura puede compartir entre std::gmtime, std::localtime y std::ctime y puede ser sobreescrita en cada llamada .
Original:
Pointer to a static internal std::tm object on success, or NULL otherwise. The structure may shared between std::gmtime, std::localtime, and std::ctime and may be overwritten on each invocation.
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] Notas
Esta función puede no ser seguro para subprocesos .
Original:
This function may not be thread-safe.
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.
POSIX requiere que esta función establece errno a EOVERFLOW si no porque el argumento es demasiado grande .
Original:
POSIX requires that this function sets errno to EOVERFLOW if it fails because the argument is too large.
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
Ejecuta este código
#include <iostream> #include <iomanip> #include <ctime> int main() { std::time_t t = std::time(NULL); std::cout << "UTC: " << std::put_time(std::gmtime(&t), "%c %Z") << '\n' << "local: " << std::put_time(std::localtime(&t), "%c %Z") << '\n'; }
Salida:
UTC: Wed Dec 28 11:44:28 2011 GMT local: Wed Dec 28 06:44:28 2011 EST
[editar] Ver también
Convierte el tiempo transcurrido desde la época a tiempo de calendario expresado como hora local. (función) | |
Documentación de C para gmtime
|