这是我的代码:
package example
object Lists {
def max(xs: List[Int]): Int = {
if(xs.isEmpty){
throw new java.util.NoSuchElementException()
}
else {
max(xs.tail)
}
}
}
当我在 sbt 控制台中运行它时:
scala> import example.Lists._
scala> max(List(1,3,2))
我有以下错误:
Scala.NotImplementedError: an implementation is missing
我该如何解决?
谢谢。