1. 程式人生 > >scala進階24-提取器與模式匹配

scala進階24-提取器與模式匹配

/**
  * 定義析構器(解構器)
  * 析構的時候unapply回被呼叫
  * 傳入的是要匹配的物件,返回的是要匹配出來的具體內容(解構後的元素)
  */
object :> {
  def unapply[A](list: List[A]) = {
    Some((list.init, list.last))//init是最後一個元素之前的元素
  }
}

object Extractor_Advanced {
  def main(args: Array[String]): Unit = {
    //匹配: 前面的元素任意,last是9
    (1 to 9).toList match { case _ :> 9 => println("Hadoop") }
    (1 to 9).toList match { case _ :> 8 :> 9 => println("Spark")} //右結合
    (1 to 9).toList match { case :>(:>(_, 8), 9) => println("Flink")}
  }
}