#表示:对应变量字符串化

##表示:把宏参数名与宏定义代码序列中的标识符连接在一起,形成一个新的标识符

连接符#@:它将单字符标记符变换为单字符,即加单引号。例如:

#define B(x) #@x

则B(a)即'a',B(1)即'1',但B(abc)却不甚有效。

  1. #include <stdio.h>
  2. #define trace(x, format) printf(#x " = %" #format "\n", x)
  3. #define trace2(i) trace(x##i, d)
  4. int _tmain(int argc, _TCHAR* argv[])
  5. {
  6. int i = 1;
  7. char *s = "three";
  8. float x = 2.0;
  9. trace(i, d);                // 相当于 printf("x = %d\n", x)
  10. trace(x, f);                // 相当于 printf("x = %f\n", x)
  11. trace(s, s);                // 相当于 printf("x = %s\n", x)
  12. int x1 = 1, x2 = 2, x3 = 3;
  13. trace2(1);                  // 相当于 trace(x1, d)
  14. trace2(2);                  // 相当于 trace(x2, d)
  15. trace2(3);                  // 相当于 trace(x3, d)
  16. return 0;
  17. }

输出结果:

i = 1
x = 2.000000
s = three
x1 = 1
x2 = 2
x3 = 3

05-13 03:57