va_end
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody>| Déclaré dans l'en-tête <cstdarg>
|
void va_end(va_list ap); |
||
</tbody>
La macro exécute un nettoyage
va_end pour un objet ap initialisé par un appel à va_start ou va_copy. va_end peut modifier ap de sorte qu'il n'est plus utilisable .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.
You can help to correct and verify the translation. Click here for instructions.
S'il n'y a pas d'appel correspondant à va_start ou va_copy, ou si
va_end n'est pas appelée avant une fonction qui appelle va_start ou va_copy rendement, le comportement est indéfini .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.
You can help to correct and verify the translation. Click here for instructions.
Paramètres
| ap | - | une instance du type va_list à nettoyer
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. |
Élargi valeur
(Aucun)
Original:
(none)
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.
Voir aussi
permet d'accéder aux arguments de la fonction variadique 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. (fonction macro) | |
(C++11) |
fait une copie des arguments de la fonction variadique Original: makes a copy 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. (fonction macro) |
accède à l'argument de la fonction suivante variadique 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. (fonction macro) |