我想用隐式格式化程序定义一个类型安全的相等匹配器:
trait Formatter[T] {
def format(t : T) : String
}
implicit val StringFormatter : Formatter[String] = new Formatter[String] { def format(s: String) = s"'$s'" }
implicit def AnyFormatter[T] : Formatter[T] = new Formatter[T] { def format(t : T) = t.toString }
class MatcherOps[T : Formatter]( t : T) {
def must_==(other : T) {
if( t != other ) println( implicitly[Formatter[T]].format(other) ) else println("OK")
}
}
implicit def ToMatcherOps[T : Formatter](t : T) = new MatcherOps[T](t)
以下按预期工作:
"ha" must_== "ho"
它被编译 ( scalac -Xprint:typer
) 成
$anon.this.ToMatcherOps[String]("ha")($anon.this.StringFormatter).must_==("ho");
但是我希望这不会编译:
List(1,2) must_== Set(1,2)
而是将 ( scalac -Xprint:typer
) 编译为
$anon.this.ToMatcherOps[Object]($anon.this.ToMatcherOps[List[Int]](immutable.this.List.apply[Int](1, 2))($anon.this.AnyFormatter[List[Int]]))($anon.this.AnyFormatter[Object]).must_==(scala.this.Predef.Set.apply[Int](1, 2))
如您所见,ToMatcherOps 被调用了两次!
如果我不使用隐式格式化程序:
implicit def ToMatcherOps[T](t : T) = new MatcherOps[T](t)
然后编译按预期失败:
error: type mismatch;
found : scala.collection.immutable.Set[Int]
required: List[Int]
List(1,2) must_== Set(1,2)
^
但当然ToMatcherOps
无法提供一个明智的Formatter
( scalac -Xprint:typer
):
implicit private def ToMatcherOps[T >: Nothing <: Any](t: T): this.MatcherOps[T] = new this.MatcherOps[T](t)($anon.this.AnyFormatter[T]);
知道如何解决这个问题吗?谢谢