大家好,我对来自 C# 的 Scala 相当陌生。
我正在尝试编写我自己的累积(折叠)版本我想知道为什么我会遇到以下问题:
def accumulate[T](list : List[T], initial: T, f: (T, T) => T) : T = {
@tailrec def loop[T](list: List[T], accum: T) : T =
if(list.length == 0)
accum
else{
val head : T = list.head
val res : T = f(accum,head)
loop[T](list.tail, res)
}
loop(list,initial)
}
我收到以下错误:
type mismatch;
found : accum.type (with underlying type T)
required: T
val res : T = f(accum,head)
^
考虑到一切都是 T 型,我看不出我的类型不匹配。
任何想法/帮助将不胜感激。
布莱尔