在LLVM 项目的源代码中,它显示:stdbool.h
/* Don't define bool, true, and false in C++, except as a GNU extension. */
#ifndef __cplusplus
#define bool _Bool
#define true 1
#define false 0
#elif defined(__GNUC__) && !defined(__STRICT_ANSI__)
/* Define _Bool, bool, false, true as a GNU extension. */
#define _Bool bool
#define bool bool
#define false false
#define true true
#endif
在最后 4 行中,有 3 行 from #define X X
。为什么要这么做?它有什么区别?这不会强制编译器替换,比如说,true
吗true
?