self-type(自身类型)

2019-04-06  本文已影响0人  simples
  1. 在trait中使用
trait User { 
  def name :String
 }

trait B { 
    this : User => // 这里self-type使用this关键字,也可以是其他任意名字
    def foo() { 
        println(name) 
    }// 同样后边的name也不需要手动增加前缀 this.name,会被识别为this.name。 
  }  
  1. 在使用trait B的时候:这里必须有 with User,否则报 Main.type 不符合 B's selftype B with User
object Main extends B with User {
 override def name = "whj"; 
}
  1. 依赖注入的关系
    后续补充
    可参考链接: http://jonasboner.com/2008/10/06/real-world-scala-dependency-injection-di/
上一篇下一篇

猜你喜欢

热点阅读