std::ctime
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <ctime>
|
||
char* ctime( const std::time_t* time ); |
||
Converte dato il tempo da epoca ad un tempo calendario locale e quindi a una rappresentazione testuale, come se chiamando std::asctime(std::localtime(time)). La stringa risultante ha il seguente formato:
Original:
Converts given time since epoch to a calendar local time and then to a textual representation, as if by calling std::asctime(std::localtime(time)). The resulting string has the following format:
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.
Www Mmm dd hh:mm:ss yyyy
Www
- il giorno della settimana (uno deiMon
,Tue
,Wed
,Thu
,Fri
,Sat
,Sun
).Original:Www
- the day of the week (one ofMon
,Tue
,Wed
,Thu
,Fri
,Sat
,Sun
).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.Mmm
- il mese (uno deiJan
,Feb
,Mar
,Apr
,May
,Jun
,Jul
,Aug
,Sep
,Oct
,Nov
,Dec
).Original:Mmm
- the month (one ofJan
,Feb
,Mar
,Apr
,May
,Jun
,Jul
,Aug
,Sep
,Oct
,Nov
,Dec
).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.dd
- il giorno del meseOriginal:dd
- the day of the monthThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.hh
- oreOriginal:hh
- hoursThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.mm
- minutiOriginal:mm
- minutesThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.ss
- secondiOriginal:ss
- secondsThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.yyyy
- anniOriginal:yyyy
- yearsThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La funzione non supporta la localizzazione.
Original:
The function does not support localization.
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.
Indice |
[modifica] Parametri
time | - | puntatore a un oggetto std::time_t specifica il tempo di stampa
Original: pointer to a std::time_t object specifying the time to print The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Valore di ritorno
Puntatore ad una stringa con terminazione null personaggio che tiene la rappresentazione testuale di data e ora. La stringa può essere condiviso tra
std::asctime
e std::ctime, e può essere sovrascritto ad ogni invocazione di una di queste funzioni.Original:
Pointer to a static null-terminated character string holding the textual representation of date and time. The string may be shared between
std::asctime
and std::ctime, and may be overwritten on each invocation of any of those functions.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.
[modifica] Note
Questa funzione restituisce un puntatore a dati statici e non è thread-safe. Inoltre, modifica l'oggetto statico std::tm che possono essere condivise con std::gmtime e std::localtime. POSIX segna questa funzione obsoleta e raccomanda std::strftime invece.
Original:
This function returns a pointer to static data and is not thread-safe. In addition, it modifies the static std::tm object which may be shared with std::gmtime and std::localtime. POSIX marks this function obsolete and recommends std::strftime instead.
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.
Il comportamento può essere definito per i valori di time_t che risultato nella stringa più lunga di 25 caratteri (ad esempio: anno 10000)
Original:
The behavior may be undefined for the values of time_t that result in the string longer than 25 characters (e.g. year 10000)
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.
[modifica] Esempio
#include <ctime> #include <iostream> int main() { std::time_t result = std::time(NULL); std::cout << std::ctime(&result); }
Output:
Tue Dec 27 17:21:29 2011
[modifica] Vedi anche
converte un oggetto tm di una rappresentazione testualeOriginal: converts a tm object to a textual representationThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
converte un oggetto personalizzato per tm rappresentazione testualeOriginal: converts a tm object to custom textual representationThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
(C++11) |
i formati e le uscite di un valore data / ora secondo il formato specificato Original: formats and outputs a date/time value according to the specified format The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) |
C documentation for ctime
|