可變參數巨集C語言C++語言函數巨集的參數個數可以是0個或多個。這一語言特性由C99引入。C++11也開始支援。[1]

Quick Facts 「可變參數巨集」的各地常用名稱, 中國大陸 ...
「可變參數巨集」的各地常用名稱
中國大陸可變參數宏
臺灣可變參數巨集
Close

聲明語法

聲明語法類似於可變參數函數:逗號後面三個句點"...",表示一個或多個參數。但常見編譯器也允許傳遞0個參數。[2][3]巨集擴充時使用特殊識別碼__VA_ARGS__表示所傳遞的參數的替換。

沒辦法訪問可變參數列內的單個參數,也不能獲知多少個參數被傳遞。[4]

實現支援

C/C++編譯器支援:

尾部逗號

對於可變參數為空情形,Visual Studio[3]直接去掉可變參數前面的逗號;GCC[2]需要在__VA_ARGS__前面放上##以去除逗號。

# define MYLOG(FormatLiteral, ...)  fprintf (stderr, "%s(%d): " FormatLiteral "\n", __FILE__, __LINE__, __VA_ARGS__)

對於

MYLOG("Too many balloons %u", 42);

擴充為:

fprintf (stderr, "%s(%u): " "Too many balloons %u" "\n", __FILE__, __LINE__, 42);

它等價於:

fprintf (stderr, "%s(%u): Too many balloons %u\n", __FILE__, __LINE__, 42);

但對於例子:

MYLOG("Attention!");

擴充為

fprintf (stderr, "%s(%u): " "Attention!" "\n", __FILE__, __LINE__, );

GCC將會編譯報錯.

GCC支援下述不可移植的擴充:

# define MYLOG(FormatLiteral, ...)  fprintf (stderr, "%s(%u): " FormatLiteral "\n", __FILE__, __LINE__, ##__VA_ARGS__)

這將刪除空的__VA_ARGS__尾部逗號。

參見

參考文獻

Wikiwand in your browser!

Seamless Wikipedia browsing. On steroids.

Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.

Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.