std::asctime
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* asctime( const std::tm* time_ptr ); |
||
Converte dato il tempo std::tm calendario per una rappresentazione testuale.
Original:
Converts given calendar time std::tm to a textual representation.
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.
La stringa risultante ha il seguente formato:
Original:
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_ptr | - | puntatore a un oggetto std::tm specifica il tempo di stampa
Original: pointer to a std::tm 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. POSIX segna questa funzione obsoleta e raccomanda std::strftime invece.
Original:
This function returns a pointer to static data and is not thread-safe. 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 è indefinito se la stringa di output sarebbe più lungo di 25 caratteri, se
timeptr->tm_wday
o timeptr->tm_mon
non sono entro i limiti previsti, o se supera timeptr->tm_year
INT_MAX-1990.Original:
The behavior is undefined if the output string would be longer than 25 characters, if
timeptr->tm_wday
or timeptr->tm_mon
are not within the expected ranges, or if timeptr->tm_year
exceeds INT_MAX-1990.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.
Alcune implementazioni di gestire timeptr->tm_mday==0 nel senso l'ultimo giorno del mese precedente.
Original:
Some implementations handle timeptr->tm_mday==0 as meaning the last day of the preceding month.
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::asctime(std::localtime(&result)); }
Output:
Tue Dec 27 16:45:52 2011
[modifica] Vedi anche
converte un oggetto time_t di una rappresentazione testualeOriginal: converts a time_t 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 asctime
|