首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
chapter05_20180330
】的更多相关文章
chapter05_20180330
// 5.7 主构造器// 主构造器的参数直接旋转在类名之后class Person57(val name: String, val age: Int) { // 上边()中的内容就是主构造器的参数} class Person57_01(val name: String) { var age = 0 def description = name + " is " + age + " years old"} // 5.8 嵌套类import scala.collect…