枚举类型宽度?
快问。枚举类型的宽度是多少?它们是否具有表示枚举所需的最小宽度,或者所有枚举都是整数?如果它们是整数,您可以更改枚举的宽度还是必须为每次出现键入强制类型转换?
Quick question. How wide are enumerated types? Are they of the minimum width required to represent the enumeration or are all enums ints? If they're ints, can you change the width of enums or would you have to type cast for each occurrence?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
(这是针对 C++ 的)
来自标准:
在 C++0x 中,您可以如下定义枚举的基础类型:
另请注意,新的强类型枚举(“枚举类”)具有默认的 int 基础类型。
(This is for C++)
From the standard:
In C++0x you can define the underlying type of an enum like follows:
Also note that the new strongly typed enums ("enum class") have a default underlying type of int.
在 C 和 C++ 中,它们是整数。类型转换不会对它们进行丝毫改变,除非将它们更改为更窄的整数类型(char、short)。
In C and C++ they're ints. Type casting will not change them in the slightest, unless you change them to a narrower integer type (char, short).
对于您标记此问题的语言来说,这是不同的。
在 C 和 C++03 中,枚举的基础类型是实现定义的。在 C++0x 中,我们可以自己声明底层类型,称为强类型枚举(或枚举类):
This is different for the languages you tagged this question with.
In C and C++03, the underlying type of an enum is implementation defined. In C++0x, we can declare the underlying type ourselfs, called strongly typed enums (or enum classes):
在 C# 中,您可以指定基础类型,如果不指定,则默认为
Int32
。In C# you can specify the underlying type, and if you don't specify then the default is
Int32
.