time
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. |
Definido en la cabecera <time.h>
|
||
Devuelve la hora actual del calendario codificado como un objeto time_t .
Original:
Returns the current calendar time encoded as a 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.
You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
time | - | puntero a un objeto time_t para almacenar el tiempo en o NULL
Original: pointer to a 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 time_t en el éxito, (time_t)(-1) en caso de error. Si el argumento no es NULL, el valor devuelto es igual al valor almacenado en el objeto apuntado por el argumento .
Original:
Current calendar time encoded as time_t object on success, (time_t)(-1) on error. If the argument is not NULL, the return value is equal to the value stored in the object pointed to by the argument.
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
La codificación de tiempo del calendario en 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 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 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 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.
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
convierte el tiempo transcurrido desde la época en cuando calendario expresado como hora local Original: converts time since epoch to calendar time expressed as local time The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
convierte el tiempo transcurrido desde la época en cuando calendario expresado en hora universal coordinada Original: converts time since epoch to calendar time expressed as Universal Coordinated Time 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 time
|