va_end
Da cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Definido no cabeçalho <cstdarg>
|
void va_end(va_list ap); |
||
A macro
va_end
realiza a limpeza de um objeto ap
inicializado por uma chamada para va_start ou va_copy. va_end
pode modificar ap
de modo que já não são utilizáveis .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 não houver nenhuma chamada correspondente para va_start ou va_copy, ou se
va_end
não é chamado antes de uma função que chama va_start ou va_copy retornos, o comportamento é indefinido.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.
[editar] Parâmetros
ap | - | uma instância do tipo va_list para limpar
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. |
[editar] Expandiu valor
(Nenhum)
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.
[editar] Veja também
permite o acesso a argumentos de função variádicos 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. (função macro) | |
(C++11) |
makes a copy of the variadic function arguments (função macro) |
acessa o argumento da função próximo aridade 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. (função macro) |