注意两者都有个define的作用,区别在于使用方式上。前者的通常用法是:
#ifdef XXX
....
#else
....
#endif
只能在两者中选择是否有定义。对于后者,常用法是:
#if defined xxx1
....
#elif defined xxx2
....
#elif defined xxx3
....
#endif
可以在多个中选择是否有定义.
注意两者都有个define的作用,区别在于使用方式上。前者的通常用法是:
#ifdef XXX
....
#else
....
#endif
只能在两者中选择是否有定义。对于后者,常用法是:
#if defined xxx1
....
#elif defined xxx2
....
#elif defined xxx3
....
#endif
可以在多个中选择是否有定义.