localtime
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. |
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <time.h>
|
||
tm* localtime( const time_t *time ); |
||
Converte dado tempo desde época como
time_t valor em tempo de calendário, expresso na hora local. Original:
Converts given time since epoch as
time_t value into calendar time, expressed in local time. 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.
Parâmetros
| time | - | ponteiro para um objeto
time_t converterOriginal: pointer to a time_t object to convertThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
ponteiro para um objeto
tm estática interna de sucesso, ou NULL contrário. A estrutura pode ser compartilhada entre gmtime, localtime, ctime e, e pode ser substituído em cada chamada.Original:
pointer to a static internal
tm object on success, or NULL otherwise. The structure may be shared between gmtime, localtime, and 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.
Notas
Esta função pode não ser thread-safe.
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 exige que esta função define errno para EOVERFLOW se falhar porque o argumento é muito 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.
Exemplo
#include <time.h>
#include <stdio.h>
struct tm *dateTime;
time_t t;
int main()
{
time(&t);
dateTime = localtime(&t);
printf("Data e Hora atuais: %s\n", asctime(dateTime));
dateTime = NULL;
return 0;
}
Saída:
Data e Hora atuais: Tue May 17 11:05:10 2016
Veja também
converte tempo desde a época de tempo do calendário expressa como Tempo Universal Coordenado 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. (função) | |
C++ documentation for localtime
| |