Scala Immutable Collection

1:Scala Collections-list List[T]----->泛型 創建列表: scala> val a = List(1,2,3,4) a: List[Int] = List(1, 2, 3, 4) 列表添加元素 :: scala> val b = 0 :: a b: List[Int] = List(0, 1, 2, 3, 4) scala> val c = "x" :: "y"
相關文章
相關標籤/搜索