gpt4 book ai didi

scala - 为什么在 foldLeft 的这个 Scala 实现中需要类型声明

转载 作者:行者123 更新时间:2023-12-01 03:37:49 24 4
gpt4 key购买 nike

我曾尝试使用以下代码在 LinkedList 上实现 foldLeft,一个是 curry foldLeft2,另一个不是,foldLeft:

sealed trait LinkedList[+E] {
@tailrec
final def foldLeft[A](accumulator: A, f: (A, E) => A): A = {
this match {
case Node(h, t) => {
val current = f(accumulator, h)
t.foldLeft(current, f)
}
case Empty => accumulator
}
}
@tailrec
final def foldLeft2[A](accumulator: A)(f: (A, E) => A): A = {
this match {
case Node(h, t) => {
val current = f(accumulator, h)
t.foldLeft2(current)(f)
}
case Empty => accumulator
}
}
}

但是当我使用 foldLeft 时,似乎我需要声明累加器和项目的类型,但对于 foldLeft2,我不需要。有人可以解释为什么会这样吗?
class LinkedListSpecification extends Specification {
"linked list" should {
"foldLeft correctly" in {
val original = LinkedList(1,2,3,4)
original.foldLeft(0, (acc: Int, item: Int) => acc + item) === 10
}
}
"linked list" should {
"foldLeft2 correctly" in {
val original = LinkedList(1,2,3,4)
original.foldLeft2(0)((acc, item) => acc + item) === 10
}
}
}

最佳答案

这是因为 Scala 中的类型推断在参数列表中从左到右工作。
因此在第二个版本中 foldLeft2它能够将类型 A 推断为 Int在它继续到下一个参数列表之前,它现在需要一个函数 (Int,E)=>Int .
虽然在第一个版本 foldLeft它试图推断 A同时通过两个参数( accumulatorf )。它提示你传递给它的匿名函数,因为它没有推断类型 A然而。

关于scala - 为什么在 foldLeft 的这个 Scala 实现中需要类型声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33116629/

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