判断有某个keyword
方式1,2
#ifdef COLOR_DEFAULT //... #elif defined(COLOR_G) //... #endif
方式3
#if COLOR_DEFAULT //... #elif COLOR_G //... #endif
判断没有某个keyword
方式1
#ifndef COLOR_DEFAULT //... #endif
方式2
#if !defined(COLOR_DEFAULT) //... #endif
标签:...,elif,keyword,COLOR,DEFAULT,备忘,编译,endif,写法 From: https://www.cnblogs.com/sailJs/p/17367785.html