2 C 枚举问题
第 1 部分
在 C 中,这样声明枚举有什么区别:
typedef enum{VAL1, VAL2,} firstEnum;
和这样:
enum secondEnum{Val1, Val2,};
除了使用 secondaryEnum 时,您必须编写:
enum secondEnum...;
第 2 部分
另外,我是否认为以下内容是等效的
enum{Val1, Val2,} enum1;
谢谢
enum thirdEnum{Val1, Val2,}
enum thirdEnum enum1;
:
Part 1
In C, is there any difference between declaring an enum like this:
typedef enum{VAL1, VAL2,} firstEnum;
and like this:
enum secondEnum{Val1, Val2,};
Apart from the fact that when using secondEnum, you have to write:
enum secondEnum...;
Part 2
Also, am I right in thinking that the following is equivalent:
enum{Val1, Val2,} enum1;
and
enum thirdEnum{Val1, Val2,}
enum thirdEnum enum1;
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在第 1 部分中,显然存在差异 - 首先,您将
firstEnum
声明为(匿名)枚举类型的typedef
,而在第二个secondEnum
中code> 是枚举类型的标记,不涉及 typedef。 正如您所指出的,建议使用第一个,因为它易于使用。在第 2 部分中,两者并不等效 - 第一个声明匿名枚举类型并将
enum1
定义为该类型。 第二个声明一个命名枚举类型,然后将enum1
声明为该类型。 其重要性在于,您可以在代码的其他部分使用命名类型,而在第一部分中您不能在其他任何地方使用它,因此您可能必须使用整数值作为枚举类型值的别名。In part 1, there is obviously a difference - first you are declaring
firstEnum
as atypedef
for the (anonymous) enumerated type, while in the secondsecondEnum
is the tag for the enumerated type and there is not a typedef involved. The first is recommended for the ease of use as you have noted.In part 2, the two are not equivalent - the first declares an anonymous enumerated type and defines
enum1
to be of that type. The second declares a named enumerated type and then declaresenum1
to be of that type. The significance is that you can use the named type in other parts of the code, while in the first you cannot use it anywhere else so you will probably have to use integer values as alias for the values of the enumerated type.