Scala 函數式編程_部分應用函數_Partially Applied Functions

Scala 函數式編程部分應用函數或函數的部分應用express

和其餘遵循函數式編程範式的語言同樣,Scala 容許部分應用一個函數。 調用一個函數時,不是把函數須要的全部參數都傳遞給它,而是僅僅傳遞一部分,其餘參數留空; 這樣會生成一個新的函數,其參數列表由那些被留空的參數組成。(不要把這個概念和偏函數混淆)編程

何爲部分應用函數?數組

Partially Applied Function:app

A function that’s used in an expression and that misses some of its arguments.函數式編程

For instance, if function f has type Int => Int => Int, then f and f(1) are partially applied functions.函數

 

A partially applied function is an expression in which you don’t supply all of the arguments needed by the function. Instead, you supply some, or none, of the needed arguments.spa

缺失的是函數須要的參數scala

scala> def sum(a: Int, b: Int, c: Int) = a + b + c
sum: (a: Int, b: Int, c: Int)Int
scala> sum _
res1: (Int, Int, Int) => Int = <function3>
scala> val a = sum _
a: (Int, Int, Int) => Int = <function3>
scala> a(1,2,3)
res2: Int = 6

代碼以下,code

object PartialApplyFuncTest {

  def calc(a: Int, b: Int, c: Int) = a + b - c

  def main(args: Array[String]) {
    val list = List(1, 2, 3, 4, 5)
    list.foreach(println _) //缺失全部參數(只有一個)
    list.foreach(println(_)) //缺失一個參數(println實際上就一個參數)
    // list.foreach(println _)等價於list.foreach(x => println x)
    // list.foreach(println(_)),是否等價於list.foreach(println _)?等價

    val print = println(_: Int) //調用print時,須要給定一個參數
    list.foreach(print)

    //以下經過_定義的部分應用函數,必須爲_指定類型
    //val s0 = calc //編譯錯,參數個數缺失或者根本不存在無參的calc函數
    val s00 = calc(1, 2, 4) //參數足夠,直接調用
    val s1 = calc(_: Int, 2, 3) //缺失第一個參數
    val s2 = calc(_: Int, _: Int, 3) //缺失第一個,第二個參數
    val s3 = calc(_: Int, 2, _: Int) //缺失第一個,第三個參數
    val s4 = calc(_: Int, _: Int, _: Int) //缺失第一個,第二個和第三個參數
    val s5 = calc _ //全部的參數列表都缺失(缺失第一個,第二個和第三個參數)
    println(s1(10))
    println(s2(20, 30))
    println(s3(10, 20))
    println(s4(3, 2, 1))
    println(s5(1, 3, 5))

    //apply語法,s5(1,3,5)等價於s5.apply(1,3,5),apply方法將參數列表發送給s5指向的函數,進行調用

    val f = (_: Int) + (_: Int)
    println(f(1, 2))
  }
}

============END============it

相關文章
相關標籤/搜索