va_list
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. |
<metanoindex/>
<tbody> </tbody> /* unspecified */ va_list; |
||
va_list è un tipo di oggetto completo adatto a contenere le informazioni necessarie dalle macro va_start, va_copy, va_arg e va_end.Se un'istanza
va_list viene creata, passato a un'altra funzione, e utilizzati tramite va_arg in tale funzione, quindi qualsiasi ulteriore impiego nella funzione chiamante deve essere preceduta da una chiamata a va_end.Original:
If a
va_list instance is created, passed to another function, and used via va_arg in that function, then any subsequent use in the calling function should be preceded by a call to va_end.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.
E 'consentito il passaggio di un puntatore a un oggetto
va_list a un'altra funzione e quindi utilizzare tale oggetto, dopo la funzione restituisce.Original:
It is legal to pass a pointer to a
va_list object to another function and then use that object after the function returns.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.
Vedi anche
consente l'accesso agli argomenti della funzione variadic Original: enables access to variadic function arguments The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione macro) | |
(C++11) |
makes a copy of the variadic function arguments (funzione macro) |
accede l'argomento successivo funzione variadic Original: accesses the next variadic function argument The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione macro) | |
termina attraversamento degli argomenti della funzione variadic Original: ends traversal of the variadic function arguments The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione macro) | |