Espacios de nombres
Variantes

va_start

De cppreference.com
 
 
Biblioteca de servicios
 
 
<tbody>
Definido en el archivo de encabezado <cstdarg>
<tbody> </tbody>
void va_start(va_list ap, parm_n);

</tbody>

La macro va_start permite el acceso a los argumentos de variable tras el argumento con nombre parm_n .
Original:
The va_start macro enables access to the variable arguments following the named argument parm_n.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
va_start es conveniente recurrir a una instancia de un objeto válido va_list ap antes de cualquier llamada a va_arg .
Original:
va_start should be invoked with an instance to a valid va_list object ap before any calls to va_arg.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parámetros

ap -
una instancia del tipo de va_list
Original:
an instance of the va_list type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
parm_n -
el parámetro llamado anterior a la primera parámetro variable
Original:
the named parameter preceding the first variable parameter
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Ampliado valor

(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Ejemplo

#include <iostream>
#include <cstdarg>

int add_nums(int count, ...) 
{
    int result = 0;
    va_list args;
    va_start(args, count);
    for (int i = 0; i < count; ++i) {
        result += va_arg(args, int);
    }
    return result;
}

int main() 
{
    std::cout << add_nums(4, 25, 25, 50, 50) << '\n';
}

Salida:

150

Ver también

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]