10

在 Scala 中,是否可以在运行时获取类型的字符串表示形式?我正在尝试按照以下方式做一些事情:

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

4 回答 4

9

在 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]
于 2015-07-02T17:42:55.117 回答
6

注意:此答案已过时!

请参阅使用 Scala 2.10 及更高版本的 TypeTag 的答案

我可以在 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.

classOf 的描述

于 2008-10-10T08:53:43.723 回答
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 方法。

于 2008-12-24T23:30:25.307 回答
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])
  }
}

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

于 2008-10-12T10:00:09.160 回答