2 C 枚举问题

发布于 2024-07-18 12:57:42 字数 477 浏览 5 评论 0原文

第 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

年少掌心 2024-07-25 12:57:42

在第 1 部分中,显然存在差异 - 首先,您将 firstEnum 声明为(匿名)枚举类型的 typedef,而在第二个 secondEnum 中code> 是枚举类型的标记,不涉及 typedef。 正如您所指出的,建议使用第一个,因为它易于使用。

在第 2 部分中,两者并不等效 - 第一个声明匿名枚举类型并将 enum1 定义为该类型。 第二个声明一个命名枚举类型,然后将 enum1 声明为该类型。 其重要性在于,您可以在代码的其他部分使用命名类型,而在第一部分中您不能在其他任何地方使用它,因此您可能必须使用整数值作为枚举类型值的别名。

In part 1, there is obviously a difference - first you are declaring firstEnum as a typedef for the (anonymous) enumerated type, while in the second secondEnum 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 declares enum1 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文