作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我这样编码:
enum State{
State0, //=0
State1, //=1
State2, //=2
State5 = State2+3, //=5
State6 = State5+1, //=6
StateSize = State6+1 //=7
};
我可以在多大程度上依赖事实(例如 StateSize==7
)?
更具体地说,确定它们的值的 C++ 法律/规则是什么?
感觉SO里面可能有这个问题,但是没找到。
最佳答案
If the first enumerator does not have an initializer, the associated value is zero. For any other enumerator whose definition does not have an initializer, the associated value is the value of the previous enumerator plus one.
关于c++ - 枚举整数值的赋值规则是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42128376/
我是一名优秀的程序员,十分优秀!