使用枚举时,c 中出现奇怪的编译错误

问题描述 投票:0回答:1

你好,在我的头文件 Data.h 中,我将布尔类型定义为枚举,但出现编译错误,我不明白为什么:

// Data.h
// Author : Alexandre rousset

typedef enum {NO, YES} bool;

typedef struct stud {
    char    *date;          
    char    *name;  /* student name */  
} Student;

void studentInit(Student *new);
bool studentPassExam(Student *s);

我收到此错误:

include/Data.h:4: error: two or more data types in declaration specifiers
include/Data.h:4: warning: useless storage class specifier in empty declaration

感谢您的帮助。

c compiler-errors
1个回答
4
投票

您的代码可以通过

gcc version 4.6.2
正常编译。

可能对于您的编译器来说

bool
是内置类型。然而,根据标准(C89、C99),事实并非如此。在编译器中寻找强制执行标准兼容行为的选项。

(以防万一,请确保您使用 C 而不是 C++ 编译器。但是,如果您使用过 C++ 编译器,那么它也应该抱怨

new
。因为
new
是 C++ 中的关键字。)

© www.soinside.com 2019 - 2024. All rights reserved.