枚举持续时间问题
因此,如果我们有一个像这样的枚举:
public enum light { red, yellow, green }
持续时间是多少?不是光是某种颜色的时候吗?
比如说
int duration = ligt.red = 1
或者类似的东西?
So if we have an enum like:
public enum light { red, yellow, green }
What would be the duration? Isn't it the time the light is a certain color?
Like
int duration = ligt.red = 1
or something like that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样声明你的枚举:
然后你可以像这样使用它:
编辑: 根据 Steve Kuo 的建议,变量
duration
已被确定。Declare your enum like this:
Then you can use it like this:
EDIT: Based on Steve Kuo's suggestion, the variable
duration
has been made final.Adarshr 的答案假设持续时间是光颜色的一个属性。如果它是特定信号集的颜色属性,您可以使用
EnumMap
。Adarshr's answer presumes that duration is a property of the color of the light. If it is instead a property of the color at a particular set of signals, you might use an
EnumMap<light, Integer>
.