Scala:使用左折叠时类型不匹配

时间:2014-11-21 18:55:26

标签: list scala

使用列表功能的实现

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]”来自缺点()用相反的方法。

我做错了什么?

1 个答案:

答案 0 :(得分:6)

使用Nil时,这是一个非常常见的错误。 Nil扩展List[Nothing],因此您需要帮助编译器正确推断B的实际类型:

def reverse[A] (list: List[A]) = {
    foldLeft(list,Nil:List[A])(Cons(_,_))
  }