Espacios de nombres
Variantes
Acciones

std::time

De cppreference.com
< cpp‎ | chrono‎ | c
 
 
Biblioteca de servicios
 
 
Utilidades de fecha y hora estilo C
Funciones
Manipulación de tiempo
time
Conversiones de formato
Constantes
Tipos
(C++17)
 
Definido en el archivo de encabezado <ctime>
time_t time( std::time_t *time );
Devuelve la hora actual del calendario codificado como un objeto std::time_t .
Original:
Returns the current calendar time encoded as a std::time_t object.
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 std::time_t para almacenar el tiempo en o NULL
Original:
pointer to a std::time_t object to store the time in or NULL
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

El tiempo del calendario actual codificado como objeto std::time_t en el éxito, (std::time_t)(-1) en caso de error. Si el argumento no es NULL, el valor devuelto también se establece en el objeto apuntado por time .
Original:
Current calendar time encoded as std::time_t object on success, (std::time_t)(-1) on error. If the argument is not NULL, the return value is also set to the object pointed by time.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Notas

La codificación de tiempo del calendario en std::time_t no está especificado, pero la mayoría de los sistemas se ajustan a POSIX specification y devuelven un valor de tipo entero que contiene el número de segundos desde la Época. Las implementaciones en las que std::time_t es un 32-bits con signo (implementaciones históricos no muchos) en el año 2038 .
Original:
The encoding of calendar time in std::time_t is unspecified, but most systems conform to POSIX specification and return a value of integral type holding the number of seconds since the Epoch. Implementations in which std::time_t is a 32-bit signed integer (many historical implementations) fail in the year 2038.
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 <ctime>
#include <iostream>
 
int main()
{
    std::time_t result = std::time(NULL);
    std::cout << std::asctime(std::localtime(&result))
              << result << " seconds since the Epoch\n";
}

Salida:

Wed Sep 21 10:27:52 2011
1316615272 seconds since the Epoch

[editar] Ver también

Convierte el tiempo transcurrido desde la época a tiempo de calendario expresado como hora local.
(función) [editar]
Convierte el tiempo transcurrido desde la época a tiempo de calendario expresado en Tiempo Universal Coordinado (UCT).
(función) [editar]
Tiempo de pared a partir del reloj de tiempo real a lo largo del sistema.
(clase) [editar]