免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

第27講:Type、Array、List、Tuple模式匹配實(shí)戰(zhàn)解析

除了普通的×××、字符串類型的模式匹配,scala還提供了很多形式的模式匹配。例如Type、Array、List、Tuple

成都創(chuàng)新互聯(lián)公司專注于涇源網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供涇源營(yíng)銷型網(wǎng)站建設(shè),涇源網(wǎng)站制作、涇源網(wǎng)頁(yè)設(shè)計(jì)、涇源網(wǎng)站官網(wǎng)定制、微信小程序開(kāi)發(fā)服務(wù),打造涇源網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供涇源網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。

我們通過(guò)代碼來(lái)說(shuō)明。

類型模式匹配:判斷傳入值的類型

    def match_type(t : Any) = t match {
      case p : Int => println("It is a Integer!")
      case p : String => println("It is a String! the content is :"+p)
      case m : Map[_,_] => m.foreach(println)
      case _ => println("Unknown Type")
    }
    
    match_type(1)
    match_type("Spark")
    match_type(Map("Spark"->"scala language"))

運(yùn)行結(jié)果如下

It is a Integer!
It is a String! the content is :Spark
(Spark,scala language)

特殊說(shuō)明Map[_,_]中的兩個(gè)_,表示任意類型。等同于type Map = Predef.Map[A, B] 但是不能寫成Map[Any,Any]

數(shù)組模式匹配:

    def match_array(arr : Any) = arr match {
      case Array(x) => println("Array(1):",x) // 長(zhǎng)度為1的數(shù)組,x代表數(shù)組中的值
      case Array(x,y) =>  println("Array(2):",x,y) // 長(zhǎng)度為2的數(shù)組,x代表數(shù)組中的第一個(gè)值
      case Array(x,_*) => println("任意一維數(shù)組:",x) //任意長(zhǎng)度數(shù)組,取第一個(gè)值
      case Array(_*) => println("任意一維數(shù)組") //任意長(zhǎng)度數(shù)組
     }
    
    match_array(Array(0))
    match_array(Array("spark"))
    match_array(Array("spark","scala"))
    match_array(Array("spark","scala",0,4))

列表匹配:

    def match_list(lst : Any) = lst match {
      case 0 :: Nil => println("List:"+0) //Nil表示空列表
      case List(x) => println("List:"+x)
      case x :: y :: Nil => println("List:"+x)
      case x :: tail => println("List:"+"多元素List") //tail表示List的剩下所有元素
    }
    
    match_list(List(0))
    match_list(List("spark"))
    match_list(List("spark","hadoop"))
    match_list(List("spark",1,2,4,5))

元組匹配

    def match_tuple(t : Any) = t match {
      case (0,_) => println("二元元組,第一個(gè)值為0")
      case (x,y) => println("二元元組,值為:"+x+","+y)
      case _ => println("something else")
    }
    
    match_tuple((0,'x'))
    match_tuple(('y','x'))
    match_tuple((0,1,2,3))

當(dāng)前文章:第27講:Type、Array、List、Tuple模式匹配實(shí)戰(zhàn)解析
當(dāng)前地址:http://m.newbst.com/article30/jhespo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站自適應(yīng)網(wǎng)站網(wǎng)站設(shè)計(jì)微信公眾號(hào)商城網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

微信小程序開(kāi)發(fā)