变参宏:...和__VA_ARGS__

作者:追风剑情 发布于:2020-3-17 14:08 分类:C

示例


  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <stdbool.h> //C99特性
  5. #include <string.h>
  6. #include <math.h>
  7. #include <ctype.h>
  8.  
  9. // 变参宏: __VA_ARGS__
  10. // ...只能放在最后
  11. #define PR(X, ...) printf("Message " #X ": "__VA_ARGS__)
  12.  
  13. // 对于简单函数,通常使用宏定义, 可以减少程序在函数中跳转,从而提高运行效率.
  14. // 在嵌套循环中使用宏更有助于提高效率
  15. #define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  16. #define ABS(X) ((X) < 0 ? -(X) : (X))
  17. #define ISSIGN(X) ((X) == '+' || (X) == '-' ? 1 : 0)
  18.  
  19. int main(int argc, char* argv[])
  20. {
  21. double x = 48;
  22. double y;
  23.  
  24. y = sqrt(x);
  25. //宏展开:printf("Message" "1" ": " "x = %g\n", x);
  26. //字符串串联后: printf("Message 1: x = %g\n", x);
  27. PR(1, "x = %g\n", x);
  28. //宏展开:
  29. PR(2, "x = %.2f, y = %.4f\n", x, y);
  30.  
  31. system("pause");
  32. return 0;
  33. }


运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号