Espacios de nombres
Variantes

va_list

De cppreference.com
 
 
Biblioteca de servicios
Apoyo del lenguaje
Apoyo de tipos (tipos básicos, RTTI)
Macros de prueba de característica de la biblioteca (C++20)
Servicios de programa
Funciones variádicas
Apoyo de corrutinas (C++20)
Apoyo de contratos (C++26)
Comparación de tres vías (C++20)
(C++20)
(C++20)(C++20)(C++20)  
(C++20)(C++20)(C++20)

 
 
/* unspecified */ va_list;
va_list es un tipo de objeto completo adecuado para contener la información necesaria para que las macros va_start, va_copy, va_arg y va_end .
Original:
va_list is a complete object type suitable for holding the information needed by the macros va_start, va_copy, va_arg, and va_end.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si una instancia de va_list se crea, se pasa a otra función, y se utiliza a través de va_arg en esa función, entonces cualquier uso posterior en la función de llamada debe ser precedida por una llamada 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.
Es legal que pasar un puntero a un objeto va_list a otra función y luego usar ese objeto después de que la función regrese .
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.

Ver también

Permite el acceso a los argumentos de función variádica.
(macro de función) [editar]
(C++11)
Crea una copia de los argumentos de función variádica.
(macro de función) [editar]
Accede al siguiente argumento de función variádica.
(macro de función) [editar]
Termina el recorrido de los argumentos de función variádica.
(macro de función) [editar]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.