scala中的trait
摘要:
特质是一些字段和行为的集合,可以扩展或混入(mixin)你的类中。1 trait Car {2 val brand: String3 }4 5 trait Shiny {6 val shineRefraction: Int7 }1 class BMW extends Car {2 val... 阅读全文
posted @ 2016-01-04 14:27 重八 阅读(1484) 评论(0) 推荐(0) 编辑
posted @ 2016-01-04 14:27 重八 阅读(1484) 评论(0) 推荐(0) 编辑