条件编译,也就是预编译命令主要有以下几种:
第一种:
#ifdef 标识符 程序段 1 #else 程序段 2 #endif
第二种:
#ifndef 标识符 程序段 1 #else 程序段 2 #endif