C語言宏中"#"和"##"的用法

在查看linux內核源碼的過程中,遇到了許多宏,這裏面有許多都涉及到"#""##",因此,在網上搜索了一些資料,整理如下:

一、一般用法 
我們使用#把宏參數變爲一個字符串,##把兩個宏參數貼合在一起
用法
include<cstdio> 
include<climits> 
using namespace std; 

#define STR(s)     #s 
#define CONS(a,b)  int(a##e##b) 

int main() 

    printf(STR(vck));           // 輸出字符串"vck" 
    printf("%d\n", CONS(2,3));  // 2e3 輸出:2000 
    return 0; 


二、當宏參數是另一個宏的時候 
需要注意的是凡宏定義裏有用'#''##'的地方宏參數是不會再展開

1, '#''##'的情況 
#define TOW      (2) 
#define MUL(a,b) (a*b) 

printf("%d*%d=%d\n", TOW, TOW, MUL(TOW,TOW)); 
這行的宏會被展開爲: 
printf("%d*%d=%d\n", (2), (2), ((2)*(2))); 
MUL裏的參數TOW會被展開爲(2). 

2, 當有'#''##'的時候 
#define A          (2) 
#define STR(s)     #s 
#define CONS(a,b)  int(a##e##b) 

printf("int max: %s\n",  STR(INT_MAX));    // INT_MAX include<climits> 
這行會被展開爲: 
printf("int max: %s\n", "INT_MAX"); 

printf("%s\n", CONS(A, A));               // compile error  
這一行則是: 
printf("%s\n", int(AeA)); 

INT_MAXA都不會再被展開然而解決這個問題的方法很簡單加多一層中間轉換宏
加這層宏的用意是把所有宏的參數在這層裏全部展開那麼在轉換宏裏的那一個宏(_STR)就能得到正確的宏參數

#define A           (2) 
#define _STR(s)     #s 
#define STR(s)      _STR(s)          // 轉換宏 
#define _CONS(a,b)  int(a##e##b) 
#define CONS(a,b)   _CONS(a,b)       // 轉換宏 

printf("int max: %s\n", STR(INT_MAX));          // INT_MAX,int型的最大值,爲一個變量 #include<climits> 
輸出爲: int max: 0x7fffffff 
STR(INT_MAX) -->  _STR(0x7fffffff) 然後再轉換成字符串; 

printf("%d\n", CONS(A, A)); 
輸出爲:200 
CONS(A, A)  -->  _CONS((2), (2))  --> int((2)e(2)) 

三、'#''##'的一些應用特例 
1、合併匿名變量名 
#define  ___ANONYMOUS1(type, var, line)  type  var##line 
#define  __ANONYMOUS0(type, line)  ___ANONYMOUS1(type, _anonymous, line) 
#define  ANONYMOUS(type)  __ANONYMOUS0(type, __LINE__) 
例:ANONYMOUS(static int);  : static int _anonymous70;  70表示該行行號; 
第一層:ANONYMOUS(static int);  -->  __ANONYMOUS0(static int, __LINE__); 
第二層:                        -->  ___ANONYMOUS1(static int, _anonymous, 70); 
第三層:                        -->  static int  _anonymous70; 
即每次只能解開當前層的宏,所以__LINE__在第二層才能被解開; 

2、填充結構 
#define  FILL(a)   {a, #a} 

enum IDD{OPEN, CLOSE}; 
typedef struct MSG{ 
  IDD id; 
  const char * msg; 
}MSG; 

MSG _msg[] = {FILL(OPEN), FILL(CLOSE)}; 
相當於: 
MSG _msg[] = {{OPEN, "OPEN"}, 
              {CLOSE, "CLOSE"}}; 

3、記錄文件名 
#define  _GET_FILE_NAME(f)   #f 
#define  GET_FILE_NAME(f)    _GET_FILE_NAME(f) 
static char  FILE_NAME[] = GET_FILE_NAME(__FILE__); 

4、得到一個數值類型所對應的字符串緩衝大小 
#define  _TYPE_BUF_SIZE(type)  sizeof #type 
#define  TYPE_BUF_SIZE(type)   _TYPE_BUF_SIZE(type) 
char  buf[TYPE_BUF_SIZE(INT_MAX)]; 
     -->  char  buf[_TYPE_BUF_SIZE(0x7fffffff)]; 
     -->  char  buf[sizeof "0x7fffffff"]; 
這裏相當於: 
char  buf[11];

alps_008:
基本看了一遍,樓主的情況屬於一般用法:

#把宏參數變爲一個字符串,##把兩個宏參數貼合在一起



#include<stdio.h>
#include<string.h>
#define STRCPY(a,b) strcpy(a##_p,#b)   //把第一個參數後邊加上字符_p,把第二個參數變成字符串

int main()
{
char var1_p[20];
char var2_p[30];
strcpy(var1_p,"aaaa");
strcpy(var2_p,"bbbb");
         STRCPY(var1,var2);            //等於strcpy(var1_p,"var2");
STRCPY(var2,var1);            //等於strcpy(var2_p,"var1");
printf("%s\n",var1_p);
printf("%s\n",var2_p);
return 0;
}



jeffer007:
Token-Pasting Operator (##) 


// preprocessor_token_pasting.cpp
#include <stdio.h>
#define paster( n ) printf_s( "token" #n " = %d", token##n )
int token9 = 9;

int main()
{
   paster(9);
}
 
Output
token9 = 9

Stringizing Operator (#) 
// stringizer.cpp
#include <stdio.h>
#define stringer( x ) printf( #x "\n" )
int main() {
   stringer( In quotes in the printf function call ); 
   stringer( "In quotes when printed to the screen" );   
   stringer( "This: \"  prints an escaped double quote" );
}

Output
In quotes in the printf function call
"In quotes when printed to the screen"
"This: \"  prints an escaped double quote" 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章