在枚举定义中使用先前定义的成员作为后续成员的一部分是否合法?
namespace ValueType {
enum Enum {
Boolean = 0,
Float = 1,
Double,
SInt = 8,
SLong,
UInt = SInt + (1 <<4),
ULong = SLong + (1 << 4)
};
}
namespace ValueType {
enum Enum {
Boolean = 0,
Float = 1,
Double,
SInt = 8,
SLong,
UInt = SInt + (1 <<4),
ULong = SLong + (1 << 4)
};
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的——要求是它是一个整型常量表达式。 C++ 标准包括以下示例:
Yes -- the requirement is that it's an integral constant expression. The C++ standard includes the following example:
正如 杰瑞,这是合法的。
在某些罕见的情况下,它会意识到枚举器的类型仅在枚举完全定义后才指定。该标准对枚举类型做了如下规定 (7.2/4):
突出显示的句子可以在以下示例中显示:
基本上,为
E0
选择的类型会影响E1
的结果值。As pointed out by Jerry, it is legal.
In some rare cases its wroth being aware that the type of the enumerators are only specified after the enumeration is fully defined. The standard says the following about the type of the enumerations (7.2/4):
The highlighted sentence can be shown in the following example:
Basically, the type chosen for
E0
affects the resulting value ofE1
.