我试图用一个抽象的成员来覆盖一个特征成员,这似乎很简单,但实际上并没有被编译。
这是我尝试做的事情的一个简单示例:
// not my code:
trait Base {
val x = new T {}
trait T {}
}
// my code:
trait Sub extends Base {
// compile error; see below
override val x: T2
// this compiles, but doesn't force `Impl` to implement `x`
// override val x: T2 = null
trait T2 extends T {
val someAddition: Any
}
}
object Impl extends Sub {
// should be forced to implement `x` of type `T2`
}
这是编译器错误:
Error:(7, 7) overriding value x in trait Sub of type Sub.this.T2;
value x in trait Base of type Sub.this.T has incompatible type;
(Note that value x in trait Sub of type Sub.this.T2 is abstract,
and is therefore overridden by concrete value x in trait Base of type Sub.this.T)
trait Sub extends Base {
^
答案 0 :(得分:6)
我能想到的一种技巧是为抽象成员使用不同的名称,并让具体成员改为调用此成员。
BOOST_NO_CXX11_RVALUE_REFERENCES
在Java领域有一个关于此问题的interesting discussion。