FAIRYFAR-INTERNAL
 
  FAIRYFAR-INTERNAL  |  SITEMAP  |  ABOUT-ME  |  HOME  
C语言判断宏定义是空还是数字

问题

直接上代码

snippet.c
#define VERSION
 
#if (VERSION == 10)
	// do something
#end

上述代码编译错误,那么我们如何判断一个宏定义为空还是数字?

案例

以下代码摘自Apache Portable Runtime(APR) 的 include\apr_pools.h 文件:

snippet.c
#if defined(APR_POOL_DEBUG)
/* If APR_POOL_DEBUG is blank, we get 1; if it is a number, we get -1. */
#if (APR_POOL_DEBUG - APR_POOL_DEBUG -1 == 1)
#undef APR_POOL_DEBUG
#define APR_POOL_DEBUG 1
#endif
#else
#define APR_POOL_DEBUG 0
#endif

解释一下第3行的 #if ,如果 APR_POOL_DEBUG 定义为空,此时宏可展开为:

#if ( -  -1 == 1)

即,

#if (1 == 1)

否则,如果 APR_POOL_DEBUG 定义为任意数字,则,此时宏可展开为:

#if (-1 == 1)

注意其中的空格使用技巧。

参考



打赏作者以资鼓励:
移动端扫码阅读:
目录: