std::vwprintf, std::vfwprintf, std::vswprintf
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 <cwchar>
|
||
int vwprintf( const wchar_t* format, va_list vlist ); |
(1) | |
int vfwprintf( FILE* stream, const wchar_t* format, va_list vlist ); |
(2) | |
int vswprintf( const wchar_t* buffer, const wchar_t* format, va_list vlist ); |
(3) | |
Carica i dati da postazioni, definite da
vlist
,, li converte in equivalenti a livello di stringa e scrive i risultati di una serie di pozzi di assorbimento.Original:
Loads the data from locations, defined by
vlist
,, converts them to wide string equivalents and writes the results to a variety of sinks.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.
1)
Scrive i risultati stdout.
Original:
Writes the results to stdout.
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.
2)
Scrive i risultati in un
stream
flusso di file.Original:
Writes the results to a file stream
stream
.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.
3)
Scrive i risultati in un
buffer
stringa ampio.Original:
Writes the results to a wide string
buffer
.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
This section is incomplete |
[modifica] Valore di ritorno
Numero di caratteri estesi scritti se il valore di esito positivo o negativo in caso di errore.
Original:
Number of wide characters written if successful or negative value if an error occurred.
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
This section is incomplete Reason: no example |
[modifica] Vedi anche
stampe formattata uscita ampio carattere stdout, un flusso di file o di un buffer Original: prints formatted wide character output to stdout, a file stream or a buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
C documentation for vwprintf, vfwprintf, vswprintf
|