摘要:
scala 模式匹配可以匹配多种,包括元组数组集合 package day01 import scala.util.Random object match1{ def main(args: Array[String]): Unit = { val arr = Array("a","b","c") val name = arr(Random.nextInt(arr.le... 阅读全文
摘要:
scala private关键字 package day01 // class 之前 private只能在本包之中进行访问! // val p = new day01.privetDemo //it is error //构造器列表之前加 private 表示只能伴生对象能进行访问! private [day01] class privetDemo private (val f... 阅读全文