#ifdef预编译相关用法

#ifdef预编译相关用法主要有:
(1)#ifdef XXX
executing the corresponding xxx code
#endif
(2)#ifdef XXX
executing the corresponding xxx code
#else
executing the other code
(3)#ifdef XXX
executing the corresponding xxx code
#elif defined YYY
executing the corresponding yyy code
#else
executing the other code
#endif
注意最后要使用#endif结束

上一篇:asp.net 获得客户端 mac 地址


下一篇:利用Python进行数据分析(5) NumPy基础: ndarray索引和切片