在Scala中获取运行时类型的字符串表示形式

时间:2008-10-10 07:04:13

标签: scala types

在Scala中,是否可以在运行时获取类型的字符串表示形式?我试图按照以下方式做点什么:

def printTheNameOfThisType[T]() = {
  println(T.toString)
}

4 个答案:

答案 0 :(得分:8)

在Scala 2.10及更高版本中,使用包含完整类型信息的TypeTag。您需要包含scala-reflect库才能执行此操作:

import scala.reflect.runtime.universe._
def printTheNameOfThisType[T: TypeTag]() = {
  println(typeOf[T].toString)
}

您将获得如下结果:

scala> printTheNameOfThisType[Int]
Int

scala> printTheNameOfThisType[String]
String

scala> printTheNameOfThisType[List[Int]]
scala.List[Int]

答案 1 :(得分:6)

注意:这个答案已经过时了!

请使用TypeTag for Scala 2.10及以上

查看答案

我可以在freenode上推荐#Scala

10:48 <seet_> http://stackoverflow.com/questions/190368/getting-the-string-representation-of-a-type-at-runtime-in-scala <-- isnt this posible?
10:48 <seet_> possible
10:48 <lambdabot> Title: Getting the string representation of a type at runtime in Scala - Stack Overflow,
                  http://tinyurl.com/53242l
10:49 <mapreduce> Types aren't objects.
10:49 <mapreduce> or values
10:49 <mapreduce> println(classOf[T]) should give you something, but probably not what you want.

Description of classOf

答案 2 :(得分:6)

在Scala中有一个新的,大多数没有记录的功能,称为“清单”;它的工作原理如下:

object Foo {
  def apply[T <: AnyRef](t: T)(implicit m: scala.reflect.Manifest[T]) = println("t was " + t.toString + " of class " + t.getClass.getName() + ", erased from " + m.erasure)
}

AnyRef绑定就是为了确保该值具有.toString方法。

答案 3 :(得分:2)

请注意,这不是“事情:”

object Test {
    def main (args : Array[String]) {
    println(classOf[List[String]])
    }
}

给出

$ scala Test                    
class scala.List

我认为你可以归咎于擦除

==== EDIT ==== 我尝试过使用泛型类型参数的方法:

object TestSv {
  def main(args:Array[String]){
    narf[String]
  }
  def narf[T](){
    println(classOf[T])
  }
}

编译器不会接受它。类型不是类是解释