我有一个特质和一个扩展特质的类(class)。我可以使用来自特征的方法,如下所示:
trait A {
def a = ""
}
class B(s: String) extends A {
def b = a
}
但是,当我在构造函数中使用trait方法时,如下所示:
trait A {
def a = ""
}
class B(s: String) extends A {
def this() = this(a)
}
然后出现以下错误:
error: not found: value a
有什么方法可以为特征中的类的构造定义默认参数?
编辑:为了说明目的:有akka-testkit:
class TestKit(_system: ActorSystem) extends { implicit val system = _system }
每个测试如下所示:
class B(_system: ActorSystem) extends TestKit(_system) with A with ... {
def this() = this(actorSystem)
...
}
因为我想在A中创建ActorSystem的通用创建:
trait A {
val conf = ...
def actorSystem = ActorSystem("MySpec", conf)
...
}
最佳答案
由于Scala的初始化顺序,这有点棘手。我发现的最简单的解决方案是使用apply作为工厂方法为B类定义一个伴随对象:
trait A {
def a = "aaaa"
}
class B(s: String) {
println(s)
}
object B extends A {
def apply() = new B(a)
def apply(s: String) = new B(s)
}
关于scala - 在类构造函数中使用特征方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28904485/