简而言之:以下无法编译(原因如下),我怎样才能使它工作?
trait Simulator {
type CM[T]
def useCM(v: CM[_])
}
case class CMH[S <: Simulator,T](cm: S#CM[T])
class SimIterator[S <: Simulator](val sim: S, val cmhs: Seq[CMH[S,_]]) {
cmhs foreach { cmh => sim.useCM(cmh.cm) }
/*
compile time error:
type mismatch; found : cmh.cm.type (with underlying type S#CM[_$2]) required:
SimIterator.this.sim.CM[_] Note: _$2 <: Any (and cmh.cm.type <: S#CM[_$2]),
but type CM is invariant in type T. You may wish to define T as +T instead.
(SLS 4.5)
*/
}
该结构背后的想法是CMH
隐藏T
特定行为SimIterator
,因为后者处理常见任务。S
用于强制 vlauesCMH
具有正确的类型而没有Simulator
.
在 中foreach
,似乎存在与CM
. 如果S#CM
是我们需要的具体类型sim.CM =:= S#CM
。但是,请查看以下内容:
object Test extends Simulator {
type CM[T] = Option[T]
def useCM(v: CM[_]) = println(v)
def mkCM[T]: CM[T] = None
CMH[Simulator,AnyRef](mkCM[AnyRef])
}
我们现在有了 a ,我们可以将它与 any 一起CMH
传入 a 。所以显然打字的限制不够。如何表达(和使用)?SimIterator
Simulator
SimIterator
S =:= sim.type
更新
这可行,但不能在构造函数中使用(非法的依赖方法类型:参数出现在同一节或更早的另一个参数的类型中)
class SimIterator(val sim: Simulator) {
def doIt(cmhs: Seq[CMH[sim.type,_]]) {
cmhs foreach { cmh => sim.useCM(cmh.cm) }
}
}
上面的例子有效,但不是我想要的。cmhs
应在施工时传入。