std::chrono::system_clock::to_time_t
Aus 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 ); |
(seit C++11) | |
Konvertiert
t
einer std::time_t Typ . 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.
Wenn std::time_t geringere Präzision hat, ist es die Implementierung definiert, ob der Wert abgerundet oder abgeschnitten .
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.
Inhaltsverzeichnis |
[Bearbeiten] Parameter
t | - | Zeitpunkt zu konvertieren
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. |
[Bearbeiten] Rückgabewert
A std::time_t Wert, der
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.
[Bearbeiten] Ausnahmen
[Bearbeiten] Siehe auch
[statisch] |
wandelt std::time_t in einen Zeitpunkt der Systemuhr (public static Elementfunktion) |