0

是否可以在蛋糕图案的封闭特征中初始化属性?类似于早期初始化程序的东西。例如:

object CakePatternInit {

  trait A {
    var prop: String = null
  }

  trait A1 extends A

  trait B {
    this: A =>
    println(prop.toUpperCase) // I'd like here prop to be initialized already with "abc"
  }

  def main(args: Array[String]) {

    val b = new B with A1
    //  how do I initialize prop here?
    //  can I write something like this:
    //  val b = new B with { prop = "abc" } A1
  }
}
4

1 回答 1

1
  trait A {
    def prop: String
  }

  trait A1 extends A

  trait B {
    this: A =>
    println(prop.toUpperCase) // I'd like here prop to be initialized already with "abc"
  }

  val t = new B with A1 { def prop = "Hello"}
  > HELLO
  > t.prop
  res22: String = Hello

声明你的propas 方法,因为scala不能覆盖var

有一篇文章可以帮到你:蛋糕图案

于 2016-02-25T08:35:46.193 回答