91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

第27講:Type、Array、List、Tuple模式匹配實戰解析

發布時間:2020-06-30 13:04:19 來源:網絡 閱讀:1291 作者:lqding1980 欄目:大數據

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


我們通過代碼來說明。

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

    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"))


運行結果如下

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

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


數組模式匹配:

    def match_array(arr : Any) = arr match {
      case Array(x) => println("Array(1):",x) // 長度為1的數組,x代表數組中的值
      case Array(x,y) =>  println("Array(2):",x,y) // 長度為2的數組,x代表數組中的第一個值
      case Array(x,_*) => println("任意一維數組:",x) //任意長度數組,取第一個值
      case Array(_*) => println("任意一維數組") //任意長度數組
     }
    
    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("二元元組,第一個值為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))



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉首市| 淳化县| 云梦县| 高碑店市| 京山县| 通化市| 西贡区| 班戈县| 英德市| 上杭县| 伽师县| 西平县| 乐清市| 岑巩县| 安吉县| 阳东县| 延庆县| 分宜县| 宁强县| 建昌县| 新乡市| 江油市| 柞水县| 名山县| 和政县| 金平| 二连浩特市| 旌德县| 滨州市| 赣州市| 治县。| 光泽县| 东平县| 抚宁县| 盐亭县| 龙口市| 大厂| 信阳市| 酒泉市| 青川县| 沧州市|