У меня есть код, который я компилирую с помощью gcc
#include<stdio.h>
#include<stdbool.h>
#define true 9
int main() {
printf("TRUE = %d\n",true);
return 0;
}
И я получаю Error
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
?
Update:
Вот stdbool.h.
Первые несколько строк
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define bool _Bool
#define true 1
#define false 0
который не похож на ответ Yu Hao .