C語言中的預編譯包含三種:1.宏定義2.文件包含3.條件編譯,條件編譯指的是滿足一定條件下才進行編譯,它有幾種形式:
(1)#ifdef標識符
//程序
#else
//程序
#endif
它的意義為如果定義了標識符,則執行程序段1,否則執行程序段2
或者用以下的形式
# ifdef 標識符
//程序
#endif
# include# include int main() { #ifdef DEBUG printf("debug is running\n"); #else printf("debug is not running\n"); #endif system("pause"); return 0; }
(2)
#ifndef 標識符
//程序1
#else
//程序2
#endif
它的含義是如果標識符沒有被定義,則執行程序段1,否則執行程序段2
# include# include int main() { #ifndef DEBUG printf("debug is not running\n"); #else printf("debug is running\n"); #endif system("pause"); return 0; }
(3)#if表達式