我遵循我编译的代码gcc
#include<stdio.h>
#include<stdbool.h>
#define true 9
int main() {
printf("TRUE = %d\n",true);
return 0;
}
我得到错误
test.c:3:0: warning: "true" redefined [enabled by default]
In file included from test.c:2:0:
/usr/lib/gcc/x86_64-linux-gnu/4.7/include/stdbool.h:34:0: note: this is the location of the previous definition
但是当我稍微改变代码时
#include<stdio.h>
#define true 9
#include<stdbool.h>
int main() {
printf("TRUE = %d\n",true);
return 0;
}
输出:
TRUE = 1
问题:
我理解第一种情况下出错的原因,但在第二种情况下,当我在我true
之前定义时#include<stdbool.h>
,为什么允许重新定义true
?
更新:
这是stdbool.h。
前几行是
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define bool _Bool
#define true 1
#define false 0
这一点不像于浩的回答。