首頁  >  文章  >  後端開發  >  在C語言中,巨集的可變長度參數

在C語言中,巨集的可變長度參數

WBOY
WBOY轉載
2023-08-27 22:49:061383瀏覽

在C語言中,巨集的可變長度參數

我們知道在C語言中可以使用可變長度參數來定義函數。為此,我們需要使用省略號(…)。同樣地,在巨集中,我們也可以使用可變長度參數。在這裡,我們同樣需要包含省略號。 ‘__VA_ARGS__’用於處理可變長度參數。連接運算子‘##’用於連接可變參數。

在這個例子中,巨集會接受可變長度的參數,就像printf()或scanf()函數一樣。在這個巨集中,我們將列印檔案名稱、行號和錯誤訊息。第一個參數是pr。它用於確定優先級,即是普通資訊字串還是錯誤訊息。

範例

#include <stdio.h>
#define INFO 1
#define ERR 2
#define STD_OUT stdout
#define STD_ERR stderr
#define LOG_MESSAGE(pr, strm, msg, ...) do {\
   char *str;\
   if (pr == INFO)\
      str = "INFORMATION";\
   else if (pr == ERR)\
      str = "ERROR";\
      fprintf(strm, "[%s] : %s : %d : "msg" </p><p>", \
      str, __FILE__, __LINE__, ##__VA_ARGS__);\
} while (0)
int main(void) {
   char *s = "Test String";
   LOG_MESSAGE(ERR, STD_ERR, "Unable to open the file"); //here normal message will be printed
   LOG_MESSAGE(INFO, STD_OUT, "%s is passed as argument", s); //pass string argument
   LOG_MESSAGE(INFO, STD_OUT, "%d + %d = %d", 14, 16, (14 + 16)); //Provide integer
}

輸出

[ERROR] : D:\text.c : 21 : Unable to open the file
[INFORMATION] : D:\text.c : 23 : Test String is passed as argument
[INFORMATION] : D:\text.c : 25 : 14 + 16 = 30

以上是在C語言中,巨集的可變長度參數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除