gpt4 book ai didi

Scala.NotImplementedError : an implementation is missing?

转载 作者:行者123 更新时间:2023-12-01 17:12:13 25 4
gpt4 key购买 nike

这是我的代码:

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

我该如何解决这个问题?

谢谢。

最佳答案

打开 example.Lists,您将看到以下几行:

def sum(xs: List[Int]): Int = ???
def max(xs: List[Int]): Int = ???

使用0代替???

关于Scala.NotImplementedError : an implementation is missing?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18901999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com