◐ Shell
clean mode source ↗

va_list – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

/* unspecified */ va_list;

va_list ist eine komplette Objekttyp für die über die Informationen von den Makros benötigt va_start, va_copy, va_arg und 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.

Wenn ein va_list Instanz erstellt wird, zu einer anderen Funktion übergeben und verwendet über va_arg in dieser Funktion, dann ist jede spätere Verwendung in der aufrufenden Funktion sollten durch einen Aufruf va_end vorangestellt werden .

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 ist legal, einen Zeiger auf eine va_list Objekt zu einem anderen Funktion übergeben und dann dieses Objekt nach der Rückgabe der Funktion .

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.

Siehe auch

ermöglicht den Zugriff auf variadische Funktionsargumente

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.


(funktionieren Makro) [edit]

(C++11)

makes a copy of the variadic function arguments
(funktionieren Makro) [edit]

greift auf die nächsten variadische Funktionsargument

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.


(funktionieren Makro) [edit]

endet Durchlaufen der variadische Funktionsargumente

Original:

ends traversal of the 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.


(funktionieren Makro) [edit]