# 问题 直接上代码 ```c #define VERSION #if (VERSION == 10) // do something #end ``` 上述代码编译错误,那么我们如何判断一个宏定义为空还是数字? # 案例 以下代码摘自Apache Portable Runtime(APR) 的 include\apr\_pools.h 文件: ```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) ``` 注意其中的空格使用技巧。 # 参考 * [Apache Portable Runtime](https://apr.apache.org/)