std::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. |
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <ctime>
|
||
time_t time( std::time_t *time ); |
||
Retorna a hora atual calendário codificado como um 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.
You can help to correct and verify the translation. Click here for instructions.
Parâmetros
| time | - | apontador para um objecto std::time_t para armazenar a hora ou 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. |
Valor de retorno
Tempo calendário atual codificado como objeto std::time_t em
(std::time_t)(-1) sucesso, em caso de erro. Se o argumento não é NULL, o valor de retorno também está definido para o objeto apontado 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.
You can help to correct and verify the translation. Click here for instructions.
Notas
A codificação de tempo do calendário em std::time_t não é especificado, mas a maioria dos sistemas em conformidade com POSIX specification e retornar um valor de tipo integral mantendo o número de segundos desde a época. Implementações em que std::time_t é um 32-bit inteiros (muitas implementações históricos) falhar no ano de 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.
You can help to correct and verify the translation. Click here for instructions.
Exemplo
#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";
}
Saída:
Wed Sep 21 10:27:52 2011
1316615272 seconds since the Epoch
Veja também
converte tempo desde a época de tempo do calendário expressa 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. (função) | |
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++11) |
tempo de relógio do relógio do sistema à escala em tempo real Original: wall clock time from the system-wide realtime clock The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe) |
Documentação C para time
|