va_list
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
/* 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.
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.
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.
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) | |
(C++11) |
Crea una copia de los argumentos de función variádica. (macro de función) |
| Accede al siguiente argumento de función variádica. (macro de función) | |
| Termina el recorrido de los argumentos de función variádica. (macro de función) |