来自非整数文字的枚举值?
在 C 中是否可以从整数文字以外的任何值声明枚举值?
Is it possible in C to declare enum values from anything other than integer literals?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 C 中是否可以从整数文字以外的任何值声明枚举值?
Is it possible in C to declare enum values from anything other than integer literals?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
枚举是 int 类型的常量。
只是一个小补充:http://en.wikipedia.org/wiki/Enumerated_type#C_and_syntropically_similar_languages
No. enums are constants with type int.
Just a small addition: http://en.wikipedia.org/wiki/Enumerated_type#C_and_syntactically_similar_languages
由广义整数文字(343、'a'、L'ß')、其他
enum
和sizeof
表达式组成的任何表达式。我不太确定,但也许还有
offsetof
表达式。Any expression that is composed of integer literals in the broad sense (343, 'a', L'ß') other
enum
, andsizeof
expressions.I am not so sure but maybe also
offsetof
expressions.