使用列表功能的实现
sealed trait List[+A]
case object Nil extends List[Nothing]
case class Cons[+A] (head:A, tail:List[A]) extends List[A]
object List {
@tailrec
def foldLeft[A,B] (list: List[A], z:B)(f:(A,B) => B) : B = {
list match {
case Nil => z
case Cons(h,t) => foldLeft(t,f(h,z))(f)
}
}
def reverse[A] (list: List[A]) = {
foldLeft(list,Nil)(Cons(_,_))
}
}
获取“类型不匹配,预期(A,Nil.Type)=> Nil.Type,actual:(A,Nil.Type)=> Cons [A]”来自缺点(,)用相反的方法。
我做错了什么?
答案 0 :(得分:6)
使用Nil
时,这是一个非常常见的错误。 Nil
扩展List[Nothing]
,因此您需要帮助编译器正确推断B
的实际类型:
def reverse[A] (list: List[A]) = {
foldLeft(list,Nil:List[A])(Cons(_,_))
}