==> Scala 中的數據集合:Map、列表、序列、集安全
==> 集合有兩種: 可變集合,不可變集合ide
---> 可變集合 能夠對集合進行修改操做
spa
---> 不可變集合 集合從不改變,所以能夠安全的共享其引用scala
==> Map指針
---> 可變
orm
val employeeInfo = scala.collection.mutable.Map("name"->"Tom", "age"->25, "gender"->"man")
---> 不可變get
val employeeInfo = scala.collection.immutable.Map("name"->"Tom", "age"->25, "gender"->"man")
---> 操做it
val employeeInfo = scala.collection.mutable.Map("name"->"Tom", "age"->25, "gender"->"man") // 獲取集合中的值 employeeInfo("name") // 若 Key 不存在,會拋出 Exception,所以,須要進行判斷 if (employeeInfo.contains("girlfriend")){ employeeInfo("girlfriend") }else{ -1 } // 能夠簡寫成 employeeInfo.getOrElse("girlfriend", -1) // 能夠修改可變集合中的值 employeeInfo("age") = 28 // 也能夠添加字數 employeeInfo += "girlfriend" -> "如花"
==> 列表io
---> 可變table
import scala.collection.mutable // 定義一個可變列表 val testList = mutable.LinkedList(1,2,3,4,5) // 對列表進行操做: 將列表中的每一個值 乘以 2 // 首先定義一個指針指向列表的開始 var cur = testList // 使用循環操做列表,Nil 至關於 null while(cur != Nil){ // elem 至關於一個變量,將循環取出的值賦給此變量,乘以2 cur.elem = cur.elem * 2 // 將指針指向下一個元素 cur = cur.next } println(testList)
---> 不可變
定義一個不可變列表 val testList = List(1,2,3,4) 定義一個空列表 val testList1:List[Nothing] = List() 定義一個二維列表 val testList2:List[List[Int]] = List(List(1,2,3), List(4,5,6)) 判斷列表是否爲空 testList.isEmpty 查看列表第一個元素 testList.head tail 返回除去第一個元素後其他的全部元素 testList.tail
==> 序列
---> Range(2,5)
---> (2 to 4)
---> (2 until 5)
==> 集 (set) 不重複元素的集合,不保留元素插入的順序,默認以 Hash 集實現
---> 建立集以及操做
// 建立一個集 var testSet = Set(1,3,5,9,8) // 向集中添加元素 testSet += "hello" // 判斷元素是否存在 testSet contains(3) // 判斷一個集是不是它的子集 Set(1,3) subsetOf(testSet)
---> 集的運算(並集、交集、差集)
var testset1 = Set(1,2,3,4,5,6) var testset2 = Set(4,5,6,7,8,9) // 並集 testset1 union testset2 res8: scala.collection.immutable.Set[Int] = Set(5, 1, 6, 9, 2, 7, 3, 8, 4) // 交集 testset1 intersect testset2 res10: scala.collection.immutable.Set[Int] = Set(5, 6, 4) // 差集 testset1 diff testset2 res11: scala.collection.immutable.Set[Int] = Set(1, 2, 3)