zoukankan      html  css  js  c++  java
  • 宏中"#"和"##"的用法

    1.一般用法

      我们使用#宏参数变为一个字符串,用##两个宏参数贴合在一起.
      用法:

     1 #include<cstdio>
     2 #include<climits>
     3 using namespace std; 
     4 #define STR(s) #s
     5 #define CONS(a,b) int(a##e##b)
     6 int main()
     7 {
     8     printf(STR(vck)); // 输出字符串"vck"
     9     printf("%d/n", CONS(2,3)); // 2e3 输出:2000
    10     return 0;
    11 }
    View Code

    2.当宏参数是另一个宏的时候

      需要注意的凡是宏定义里有用'#''##'的地方宏参数不会再展开.

    2.1  非'#'和'##'的情况

    1 #define TOW (2)
    2 #define MUL(a,b) (a*b)
    3 printf("%d*%d=%d/n", TOW, TOW, MUL(TOW,TOW));
    4 //这行的宏会被展开为:
    5 printf("%d*%d=%d/n", (2), (2), ((2)*(2)));
    6 //MUL里的参数TOW会被展开为(2).
    View Code

    2.2 当有'#'或'##'的时候

    1 #define A (2)
    2 #define STR(s) #s
    3 #define CONS(a,b) int(a##e##b)
    4 printf("int max: %s/n", STR(INT_MAX)); // INT_MAX #include<climits>
    5 //这行会被展开为:
    6 printf("int max: %s/n", "INT_MAX");
    7 printf("%s/n", CONS(A, A)); // compile error 
    8 //这一行则是:
    9 printf("%s/n", int(AeA));
    View Code

      INT_MAX和A都不会再被展开, 然而解决这个问题的方法很简单. 加多一层中间转换宏.加这层宏的用意是把所有宏的参数在这层里全部展开, 那么在转换宏里的那一个宏(_STR)就能得到正确的宏参数.

     1 #define A (2)
     2 #define _STR(s) #s
     3 #define STR(s) _STR(s) // 转换宏
     4 #define _CONS(a,b) int(a##e##b)
     5 #define CONS(a,b) _CONS(a,b) // 转换宏
     6 printf("int max: %s/n", STR(INT_MAX)); // INT_MAX,int型的最大值,为一个变量 #include<climits>
     7 //输出为: int max: 0x7fffffff
     8 STR(INT_MAX) --> _STR(0x7fffffff) 然后再转换成字符串;
     9 printf("%d/n", CONS(A, A));
    10 //输出为:200
    11 CONS(A, A) --> _CONS((2), (2)) --> int((2)e(2))
    View Code

    3.'#'和'##'的一些应用特例

    3.1 合并匿名变量名

    1 #define ___ANONYMOUS1(type, var, line) type var##line
    2 #define __ANONYMOUS0(type, line) ___ANONYMOUS1(type, _anonymous, line)
    3 #define ANONYMOUS(type) __ANONYMOUS0(type, __LINE__)
    View Code

      例:ANONYMOUS(static int); 即: static int _anonymous70; 70表示该行行号;

      第一层:ANONYMOUS(static int); --> __ANONYMOUS0(static int, __LINE__);
      第二层: --> ___ANONYMOUS1(static int, _anonymous, 70);
      第三层: --> static int _anonymous70;
      即每次只能解开当前层的宏,所以__LINE__在第二层才能被解开;

    3.2 填充结构

    1 #define FILL(a) {a, #a}
    2 enum IDD{OPEN, CLOSE};
    3 typedef struct MSG{
    4 IDD id;
    5 const char * msg;
    6 }MSG;
    View Code

      MSG _msg[] = {FILL(OPEN), FILL(CLOSE)};

      相当于:
      MSG _msg[] = {{OPEN, "OPEN"},
      {CLOSE, "CLOSE"}};

    3.3 记录文件名

    1 #define _GET_FILE_NAME(f) #f
    2 #define GET_FILE_NAME(f) _GET_FILE_NAME(f)
    3 static char FILE_NAME[] = GET_FILE_NAME(__FILE__);
    View Code

    3.4 得到一个数值类型所对应的字符串缓冲大小

    1 #define _TYPE_BUF_SIZE(type) sizeof #type
    2 #define TYPE_BUF_SIZE(type) _TYPE_BUF_SIZE(type)
    3 char buf[TYPE_BUF_SIZE(INT_MAX)];
    View Code

      --> char buf[_TYPE_BUF_SIZE(0x7fffffff)];--> char buf[sizeof "0x7fffffff"];

      这里相当于:
      char buf[11];

  • 相关阅读:
    POJ1741 Tree(树分治)
    codeforces713D Animals and Puzzle(二维倍增)
    codeforces713C Sonya and Problem Wihtout a Legend(dp)
    codeforces724E Goods transportation(最小割——dp)
    codeforces710E Generate a String(dp)
    codeforces Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) 题解(A-D)
    BNUOJ52317 As Easy As Possible(树上倍增)
    hihocoder1386 Pick Your Players(dp)
    常用函数
    vector总结(更新中。。。)
  • 原文地址:https://www.cnblogs.com/blueoverflow/p/4791213.html
Copyright © 2011-2022 走看看