我想创建一个Bla
带有类型参数的案例类,A
它知道A
运行时的类型(它将其存储在其info
字段中)。
我的尝试如下例所示。问题是这个例子不能编译。
case class Bla[A] (){
val info=Run.paramInfo(this) // this does not compile
}
import scala.reflect.runtime.universe._
object Run extends App{
val x=Bla[Int]
def paramInfo[T](x:T)(implicit tag: TypeTag[T]): String = {
val targs = tag.tpe match { case TypeRef(_, _, args) => args }
val tinfo=s"type of $x has type arguments $targs"
println(tinfo)
tinfo
}
paramInfo(x)
}
但是,当我发表评论时val info=Run.paramInfo(this)
,程序运行良好并打印:
Bla() 的类型具有类型参数 List(Int)
有没有办法让下面的这个例子编译?(或以其他方式实现相同的目标,即案例类自我意识到其类型参数的类型?)