作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为 Scala Enumeration
值编写一个通用的 max 方法。我有
def enumMax[E <: Enumeration, V <: E#Value](v1: V, v2: V): V = v1.compare(v2) match {
case x if x > 0 => v1
case x if x < 0 => v2
case _ => v1
}
但我收到了相当神秘的错误消息
[error] overloaded method value compare with alternatives:
[error] ((that: _1.Value)Int) forSome { val _1: E } <and>
[error] (that: _1.Value)Int
[error] cannot be applied to (V)
[error] def enumMax[E <: Enumeration, V <: E#Value](v1: V, v2: V): V = v1.compare(v2) match {
[error] ^
有人知道这里发生了什么吗?有没有更好的方法来完成这个?谢谢。
最佳答案
添加上下文绑定(bind)Ordering
就足够了
def enumMax[E <: Enumeration, V <: E#Value : Ordering](v1: V, v2: V): V = v1.compare(v2) match {
case x if x > 0 => v1
case x if x < 0 => v2
case _ => v1
}
只是编译器报错,不清楚。
尝试
def enumMax(e: Enumeration)(v1: e.Value, v2: e.Value): e.Value = v1.compare(v2) match {
case x if x > 0 => v1
case x if x < 0 => v2
case _ => v1
}
关于scala - 如何比较泛型枚举值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55940394/
我是一名优秀的程序员,十分优秀!