温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

第27讲:Type、Array、List、Tuple模式匹配实战解析

发布时间:2020-06-30 13:04:19 来源:网络 阅读:1273 作者: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