请考虑以下代码片段(它演示了我实际问题的简化版本):
trait Id[Type[_]] {
def id[S]: S => Type[S]
}
trait IdTransformer[Type[_]] {
type Result[_] // depends of Type
def idTransform[P]: P => Result[P]
def composeWith[Other[_]](other: Id[Other]) = new Id[Result[Other]] { def id[S] = x => idTransform(other.id(x)) }
}
// instance example
class OptionIdTransformer extends IdTransformer[Option] {
type Result = Option[_]
def idTransform[S] = x => Some(x)
}
在那里,我有 Id trait 定义了一个将值包装到类型中的函数,而 IdTransformer trait 定义了一种向 id 操作添加新逻辑的方法。我想以类似的方式使用它们
Transformer1.composeWith(Transformer2.composeWith(...(idInstance)))
但是当我编译代码时,我收到错误消息
type Other takes type parameters
和
IdTransformer.this.Result[<error>] takes no type parameters, expected: one
在 composeWith 方法中,虽然 Result[Other] 应该是更高种类的类型并且应该采用单个类型参数。
请解释错误的原因是什么以及是否有解决方法。