如何扩展 Scala 中现有的枚举对象?
我想知道您是否可以扩展 Scala 中已有的枚举。例如:
object BasicAnimal extends Enumeration{
type BasicAnimal = Value
val Cat, Dog = Value
}
可以这样扩展吗:
object FourLeggedAnimal extends BasicAnimal{
type FourLeggedAnimal = Value
val Dragon = Value
}
那么,FourLeggedAnimal 中的元素将是 Cat、Dog 和 Dragon。这可以做到吗?
I'm wondering if you can extend already existing enumerations in Scala. For example:
object BasicAnimal extends Enumeration{
type BasicAnimal = Value
val Cat, Dog = Value
}
Can this be extended something like this:
object FourLeggedAnimal extends BasicAnimal{
type FourLeggedAnimal = Value
val Dragon = Value
}
Then, the elements in FourLeggedAnimal would be Cat, Dog and Dragon. Can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,你不能这样做。
extends
之后的标识符BasicAnimal
不是类型,而是值,因此不幸的是,它不起作用。No, you cannot do this. The identifier
BasicAnimal
afterextends
is not a type, it is a value, so it won't work, unfortunately.可能就是这样:
备注:不可能按名称使用 E2 中的 E1 值:
但您可以这样称呼它们:
或:
May be that's the way:
One remark: it's not possible to use E1 values from E2 by name:
But you can call them like:
or: