scala> import scala.reflect.runtime.universe._
import scala.reflect.runtime.universe._
scala> def typeOf[T](x:T)( implicit tag: TypeTag[T] ) = tag
typeOf: [T](x: T)(implicit tag: reflect.runtime.universe.TypeTag[T])reflect.runtime.universe.TypeTag[T]
scala> class Foo( a:Int )
defined class Foo
scala> trait Bar
defined trait Bar
scala> val x = new Foo(3) with Bar
x: Foo with Bar = $anon$1@62fb343d
scala> val t = typeOf(x)
t: reflect.runtime.universe.TypeTag[Foo with Bar] = TypeTag[Foo with Bar]
scala> t.tpe
res20: reflect.runtime.universe.Type = Foo with Bar
scala> t.tpe.toString
res21: String = Foo with Bar
只是为了证明它产生表达式的静态类型,而不是对象的动态类型:
scala> val l = List(1,2,3)
l: List[Int] = List(1, 2, 3)
scala> val s:Seq[Int] = l
s: Seq[Int] = List(1, 2, 3)
scala> typeOf(s)
res22: reflect.runtime.universe.TypeTag[Seq[Int]] = TypeTag[scala.Seq[Int]]
3条答案
按热度按时间xj3cbfub1#
也许TypeTag就是你要找的吗?
只是为了证明它产生表达式的静态类型,而不是对象的动态类型:
hzbexzde2#
表达式的类型在编译时是静态已知的。
要在运行时访问它,您可以使用另一个答案中的
TypeTag
,或者一个普通的宏:REPL也只是报告编译器分配给表达式树的类型。
hgc7kmma3#
当在Scala中使用Metals时,你可以将鼠标悬停在表达式中的
x
变量上,然后立即显示类型(已经编译了程序),或者你启用Metals: Toggle showing inferred type
,然后当鼠标悬停在变量名旁边时,类型直接以灰色显示。