Scala Typeclasses

时间:2016-04-18 16:41:31

标签: scala functional-programming typeclass

我试图实现简单的类型类模式。它假设与scalaz的类型类似。不幸的是,我无法让它发挥作用。我有特质Str

trait Str[T] {
  def str(t: T): String
}

object Str {
  def apply[T](implicit instance: Str[T]) : Str[T] = instance
}

在我的隐含实例中。

object Temp extends App {

  implicit val intStr = new Str[Int] {
    def str(i: Int) = i.toString
  }

  1.str //error: value str is not a member of Int

}

我很感激任何见解。

1 个答案:

答案 0 :(得分:8)

你现在可以做的一切都是

Str[Int].str(1)

要使用1.str,您需要引入隐式转换。

例如,您可以使用此方法:

implicit class StrOps[A](val self: A) extends AnyVal {
    def str(implicit S: Str[A]) = S.str(self)
}

给出了:

scala> 1.str
res2: String = 1