Espacios de nombres
Variantes
Acciones

std::gmtime

De cppreference.com
< cpp‎ | chrono‎ | c
 
 
Biblioteca de servicios
 
 
Utilidades de fecha y hora estilo C
Funciones
Manipulación de tiempo
Conversiones de formato
gmtime
Constantes
Tipos
(C++17)
 
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.

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.

[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.
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.

[editar] Ejemplo

#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) [editar]