Espaços nominais
Variantes
Acções

va_end

Da cppreference.com
< cpp‎ | utility‎ | variadic

 
 
Biblioteca de utilitários
Digite apoio (basic types, RTTI, type traits)
Gerenciamento de memória dinâmica
De tratamento de erros
Utilidades do programa
Variadic funções
Data e hora
Objetos de função
(C++11)
Os operadores relacionais
Original:
Relational operators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
rel_ops::operator!=
rel_ops::operator>
rel_ops::operator<=
rel_ops::operator>=
Pares e tuplas
Original:
Pairs and tuples
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Troque, avançar e avançar
Original:
Swap, forward and move
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
 
 
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.
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.

[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.

[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) [edit]
(C++11)
makes a copy of the variadic function arguments
(função macro) [edit]
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) [edit]