应该怎样做才能拥有“价值”?在枚举中?

发布于 2024-08-24 04:00:43 字数 168 浏览 8 评论 0原文

此代码无法编译:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

能怎样 2024-08-31 04:00:43

这是不可能的,因为 Value 已经是 Enumeration 的最终成员 - 明显的建议是调用您的字段 Val

This is not possible because Value is already a final member of Enumeration - the obvious suggestion is to call your field Val instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文