Scala:是否可以定义扩展其class参数的类?

时间:2019-04-09 20:16:29

标签: scala inheritance subclass

我想设计一个可用作其他任何类的包装器的类。我们将此包装类称为Virtual,它的用法如下:

val x: String = "foo"
val y: Virtual[String] = new Virtual(x)
// any method that can be called on x can also be called on y,
// i.e., Virtual[String] <: String

// example:
y.toUpperCase // will change the wrapped string to an upper case

这是我到目前为止所拥有的:

class Virtual[T](obj: T) extends T {
  // any Virtual specific methods here
}

扩展type参数似乎并不能解决问题...

换句话说: 如何确保Virtual类本身公开的类所公开的方法也被Virtual类本身公开?

1 个答案:

答案 0 :(得分:2)

根据评论和Kevin's answer中的建议,尝试像这样使用隐式转换

object Hello extends App {
  class Virtual[T](val delegate: T) {
    def bar(i: Int): Int = i + 1
  }
  implicit def VirtualToDelegate[T](virtual: Virtual[T]): T = virtual.delegate
  val str = "foo"
  val virtual = new Virtual[String](str)
  println(virtual.toUpperCase) // FOO
  println(virtual.bar(7))      // 8
}