在类型别名中使用上下文绑定

时间:2012-03-13 08:36:45

标签: scala

是否可以在Scala中使用类型别名中的上下文边界?

e.g

type U = A : B

2 个答案:

答案 0 :(得分:13)

不,因为上下文绑定实际上是额外隐式参数的简写。

例如:

def sort[A : Ordering](xs: Seq[A])

的简写形式
def sort[A](xs: Seq[A])(implicit ordering: Ordering[A])

,这不能在类型定义中表示。

答案 1 :(得分:12)

不必直接在类型声明中绑定上下文,而是必须有一个单独的值声明来表示JPP提到的隐式参数。

无论谁定义类型,还必须提供上下文绑定的证据:

trait Generic {
  type U
  implicit val ordering: Ordering[U]  // evidence for U: Ordering

  def max(u1: U, u2: U) = List(u1, u2).max
}

def concrete[T: Ordering] = new Generic {
  type U = T
  val ordering = implicitly[Ordering[T]]
}

assert(concrete[Int].max(1,3) == 3)