std::chrono::system_clock::to_time_t
Da cppreference.com
< cpp | chrono | system clock
![]() |
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. |
static std::time_t to_time_t( const std::chrono::time_point& t ); |
(desde C++11) | |
Converte
t
a um tipo std::time_t. Original:
Converts
t
to a std::time_t type. 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.
Se std::time_t tem menor precisão, é definida pela implementação se o valor é arredondado ou truncado.
Original:
If std::time_t has lower precision, it is implementation-defined whether the value is rounded or truncated.
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.
Índice |
[editar] Parâmetros
t | - | ponto de tempo para converter
Original: time point 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
Um valor representando std::time_t
t
.Original:
A std::time_t value representing
t
.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] Exceções
[editar] Veja também
[estática] |
converte std::time_t a um ponto de tempo do relógio do sistema Original: converts std::time_t to a system clock time point The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função public static membro) |