严格来说,这不是一个咖喱函数,而是一个具有多个参数列表的方法,尽管它看起来像一个函数。
如您所说,多个参数列表允许使用该方法代替部分应用的函数。(很抱歉我使用的愚蠢示例)
object NonCurr {
def tabulate[A](n: Int, fun: Int => A) = IndexedSeq.tabulate(n)(fun)
}
NonCurr.tabulate[Double](10, _)
val x = IndexedSeq.tabulate[Double](10) _
x(math.exp(_))
另一个好处是,您可以使用花括号代替括号,如果第二个参数列表由单个函数或thunk组成,则括号看起来不错。例如
NonCurr.tabulate(10, { i => val j = util.Random.nextInt(i + 1); i - i % 2 })
与
IndexedSeq.tabulate(10) { i =>
val j = util.Random.nextInt(i + 1)
i - i % 2
}
或为重击:
IndexedSeq.fill(10) {
println("debug: operating the random number generator")
util.Random.nextInt(99)
}
另一个优点是,您可以引用以前的参数列表中的参数来定义默认参数值(尽管您也可以说无法在单个列表中执行此操作是一个缺点:)
def doSomething(f: java.io.File)(modDate: Long = f.lastModified) = ???
最后,在相关文章的答案中还有其他三个应用程序。为什么Scala同时提供多个参数列表和每个列表多个参数?。我将在这里复制它们,但要感谢Knut Arne Vedaa,Kevin Wright和临时演员。
首先:您可以有多个var args:
def foo(as: Int*)(bs: Int*)(cs: Int*) = as.sum * bs.sum * cs.sum
...这在单个参数列表中是不可能的。
其次,它有助于类型推断:
def foo[T](a: T, b: T)(op: (T,T) => T) = op(a, b)
foo(1, 2){_ + _}
def foo2[T](a: T, b: T, op: (T,T) => T) = op(a, b)
foo2(1, 2, _ + _)
最后,这是拥有隐式和非隐式args的唯一方法,这是implicit
整个参数列表的修饰符:
def gaga [A](x: A)(implicit mf: Manifest[A]) = ???
def gaga2[A](x: A, implicit mf: Manifest[A]) = ???