为什么此代码会产生错误
def test[A](a: List[A], f: A => A) = a.map(f)
println(test(List(1,2,3), _*2))
error: missing parameter type for expanded function ((x$2) => x$2.$times(2))
Scala不应该告诉A是Int吗?
答案 0 :(得分:6)
您需要第二个参数列表才能生效。我不确定这是如何在规范中定义的,但我之前已经看过了。
scala> def test[A](a: List[A])(f: A => A) = a.map(f)
test: [A](a: List[A])(f: (A) => A)List[A]
scala> test(List(1))(_+1)
res1: List[Int] = List(2)
答案 1 :(得分:1)
这就是一个例子,如何让它在你的情况下工作而不改变任何东西。
scala> println(test(List(1,2,3), (i: Int) => i * 2 ))
Scala的类型推断是有限的,有时你应该帮忙!
以下是文章Making the most of Scala's (extremely limited) type inference