我有这组重载函数:
case class A[T](t: T) object C { def dump(a: A[String],s: String) = .... def dump(a: A[Int],s: Int) = .... def dump(a: A[Double],s: Double) = .... }
并有这个通用的方法:
class B { def dump[T](a: A[T],t: T) = C.dump(a,t) }
它不编译,因为Scala编译器与不同的重载混淆.
这样做的正确方法是什么?
解决方法
基于@drexin使用ad-hoc多态性回答,我只是略微改变使用问题的签名使其更清晰一点.
def dump [T](a:A [T],t:T)= C.dump(a,t)
case class A[T](t: T) trait Dumper[T] { def dump(a: A[T],t: T): Unit } class B { def dump[T](a: A[T],t: T)(implicit dumper: Dumper[T]) = dumper.dump(a,t) } implicit val IntDummper = new Dumper[Int] { override def dump(a: A[Int],t: Int): Unit = { println("int dummper processing it") } } implicit val StringDummper = new Dumper[String] { override def dump(a: A[String],t: String): Unit = { println("string dummper processing it") } } val result = new B result.dump(A("3"),"3") //string dummper processing it result.dump(A(3),3) //int dummper processing it
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。