摘要:
https://github.com/lauris/awesome-scala Awesome Scala A community driven list of useful Scala libraries, frameworks and software. This is not a catalo 阅读全文
摘要:
1 val strVal = scala.io.Source.fromFile("test.txt").mkString 2 //在strVal被定义的时候获取值,如果test.txt不存在,直接报异常 3 4 lazy val strLazy = scala.io.Source.fromFile("test.txt").mkString 5 //在strLazy第一次被使用的时候取值,... 阅读全文