- 相關(guān)推薦
C語言的宏定義分析
引導(dǎo)語:你了解C語言嗎,知道C語言的宏定義是什么嗎,以下是百分網(wǎng)小編分享給大家的C語言的宏定義分析,歡迎閱讀!
C語言中,預(yù)處理器功能:
1. #include <>or" " 的頭文件替換
2.#define 對象替換(object-like)
對象替換以第一個(gè)空格為分割,之后的為replacement token list
3.#define () 函數(shù)替換(function-like)
函數(shù)替換 ()之間不能有任何空白符。但是調(diào)用的時(shí)候可以在之間有空格。
函數(shù)替換的時(shí)候需要注意參數(shù)表的優(yōu)先級和類型。如果替換塊中需要用--';'是,用do{}while(0)封裝,
另外注意宏定義末尾不能有';'否則if-else語句的時(shí)候容易出錯(cuò)。
4 #ifdefine等條件編譯選項(xiàng)
宏定義中比較容易搞錯(cuò)的是##與#的使用。
##是連接兩個(gè)參數(shù),
#define MYCASE(item,id) \
case id: \
item##_##id = id;\
break
switch(x) {
MYCASE(widget,23);
}
MYCASE(widget,23); 被擴(kuò)展為
case 23:
widget_23 = 23;
break;
#是把參數(shù)變?yōu)樽址?/p>
#define QUOTEME(x) #x
printf("%s\n", QUOTEME(1+2));
替換后==>
printf("%s\n", "1+2");
在使用##與#的時(shí)候,如果想使宏一定的參數(shù)也被宏替換(使用其值)
而不是參數(shù)名字被使用,應(yīng)該使用間接訪問的方式。
下面是兩個(gè)例子:
-----------------------------------------------------------------------------------------------------------
enum {
OlderSmall = 0,
NewerLarge = 1
};
#define Older Newer
#define Small Large
#define _replace_1(Older, Small) Older##Small
#define _replace_2(Older, Small) _replace_1(Older, Small)
void printout( void )
{
// _replace_1( Older, Small ) becomes OlderSmall (not NewerLarge),
// despite the #define calls above.
printf("Check 1: %d\n", _replace_1( Older, Small ) );
// The parameters to _replace_2 are substituted before the call
// to _replace_1, so we get NewerLarge.
printf("Check 2: %d\n", _replace_2( Older, Small ) );
}
results is:
Check 1: 0
Check 2: 1
-----------------------------------------------------------------------------
#define FOO bar
#define QUOTEME_(x) #x
#define QUOTEME(x) QUOTEME_(x)
the code
printf("FOO=%s\n", QUOTEME(FOO));
擴(kuò)展后==>
printf("FOO=%s\n", "bar");
【C語言的宏定義分析】相關(guān)文章:
C語言宏定義07-01
C語言預(yù)定義宏用法03-30
C語言的assert斷言宏12-03
C 語言中宏的使用12-03
C語言條件編譯分析實(shí)例03-30
C語言的結(jié)構(gòu)與聯(lián)合的實(shí)例分析03-30
C語言標(biāo)準(zhǔn)定義的32個(gè)關(guān)鍵字11-30