va_end
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 <cstdarg>
|
void va_end(va_list ap); |
||
La macro
va_end
esegue la pulitura per un oggetto ap
inizializzato da una chiamata a va_start o va_copy. va_end
può modificare ap
modo che non è più utilizzabile.Original:
The
va_end
macro performs cleanup for an ap
object initialized by a call to va_start or va_copy. va_end
may modify ap
so that it is no longer usable.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.
Se non vi è alcuna chiamata corrispondente a va_start o va_copy, o se
va_end
non viene chiamato prima di una funzione che chiama va_start o va_copy ritorna, il comportamento non è definito.Original:
If there is no corresponding call to va_start or va_copy, or if
va_end
is not called before a function that calls va_start or va_copy returns, the behavior is undefined.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] Parametri
ap | - | un'istanza del tipo va_list per ripulire
Original: an instance of the va_list type to clean up The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Expanded valore
(Nessuno)
Original:
(none)
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] 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) |