应该怎样做才能拥有“价值”?在枚举中?
此代码无法编译:
object Token extends Enumeration {
type ID = Value
val Key, Value = Value
}
错误:递归值值需要类型
应该如何在枚举中包含“值”?
This code does not compile:
object Token extends Enumeration {
type ID = Value
val Key, Value = Value
}
error: recursive value Value needs type
What should be done to have 'Value' in the enumeration ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的,因为
Value
已经是Enumeration
的最终成员 - 明显的建议是调用您的字段Val
。This is not possible because
Value
is already a final member ofEnumeration
- the obvious suggestion is to call your fieldVal
instead.