close
Namensräume
Varianten

time

Aus cppreference.com
< c | chrono

<metanoindex/>

 
 
Datum und Uhrzeit Versorgungsunternehmen
Funktionen
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Zeit Manipulation
Original:
Time manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
difftime
time
clock
Format Konvertierungen
Original:
Format conversions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
asctime
ctime
strftime
wcsftime
gmtime
localtime
mktime
Konstanten
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
CLOCKS_PER_SEC
Types
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
tm
time_t
clock_t
 
<tbody> </tbody>
definiert in Header <time.h>
time_t time( time_t *time );
Gibt das aktuelle Kalenderjahr Zeit als time_t Objekt kodiert .
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.

Parameter

time -
Zeiger auf ein Objekt time_t, um die Zeit in oder NULL speichern
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.

Rückgabewert

Aktuelle Kalenderwoche Zeit als time_t Objekt auf Erfolg, (time_t)(-1) on error codiert. Wenn das Argument nicht NULL, ist der Rückgabewert gleich dem Wert in dem Objekt, auf das Argument gespeichert .
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.

Notes

Die Codierung der Kalenderzeit in time_t ist unbegrenzt, aber die meisten Systeme entsprechen POSIX specification und einen Wert zurückgeben integraler Typ, der die Anzahl der Sekunden seit der Epoche. Implementierungen, in denen time_t ist ein 32-Bit-Integer (viele historische Implementierungen) scheitern im Jahr 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.

Beispiel

Siehe auch

wandelt Mal seit Epoche Kalender Zeit ausgedrückt als lokale Zeit
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.

(Funktion) [edit]
wandelt Mal seit Epoche zu Kalenderzeit ausgedrückt als Universal Coordinated Time
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.

(Funktion) [edit]