標準ライブラリヘッダ <cstdarg>
提供: cppreference.com
このヘッダは元々 C 標準ライブラリに <stdarg.h>
として存在していました。
このヘッダは C スタイルの可変長引数関数サポートを提供します。
型 | |
va_start, va_arg, va_end, va_copy によって必要とされる情報を保持します (typedef) | |
マクロ | |
可変長引数関数の引数にアクセスできるようにします (関数マクロ) | |
可変長引数関数の次の引数にアクセスします (関数マクロ) | |
(C++11) |
可変長引数関数の引数のコピーを作成します (関数マクロ) |
可変長引数関数の引数のトラバーサルを終了します (関数マクロ) |
[編集] 概要
namespace std { using va_list = /*see description*/ ; } #define va_arg(V, P) /*see description*/ #define va_copy(VDST, VSRC) /*see description*/ #define va_end(V) /*see description*/ #define va_start(V, P) /*see description*/