多种情况汇报这种错误,例如代码中有中文之类的,
但是如果C文件里有bool,那么也会报这个错误,因为C++里有bool型,而C里面是没有的!!!
如果想用bool需要自定义,false和true也是如此
#ifndef bool
#define bool int
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE (!FALSE)
#endif
#define false FALSE
#define true TRUE