根据不同情况编译不同代码、产生不同目标文件的机制,称为条件编译
有这些预处理命令:#if、#elif、#else #endif ;#ifdef #else #endifPHP源码:
#ifdef SERIALIZE_HEADERS //如果存在宏定义SERIALIZE_HEADERS # define VEC_FREE() smart_str_free(&vec_str) //宏定义VEC_FREE()#else //如果不存在 # define VEC_FREE() do {} while (0) //宏定义空操作#endif#ifdef DEBUG //如果存在宏定义DEBUG# define LOG_MSG printf //宏定义LOG_MSG#else //如果不存在# define LOG_MSG(...) //宏定义空操作#endif
练习:
#if _WIN32 printf("windows系统 \n"); #elif __linux__ printf("linux系统 \n"); #else printf("其他系统 \n"); #endif #ifdef N printf("存在宏定义N \n"); #else printf("不存在宏定义N \n"); #endif