In Scala, is it possible to get the string representation of a type at runtime? I am trying to do something along these lines:
def printTheNameOfThisType[T]() = {
println(T.toString)
}
|
|
|
|
|
|
|
May I recommend #Scala on freenode
|
|||
|
|
|
There's a new, mostly-undocumented feature called "manifests" in Scala; it works like this:
The AnyRef bound is just there to ensure the value has a .toString method. |
||
|
|
|
|
Please note that this isn't really "the thing:"
gives
I think you can blame this on erasure ====EDIT==== I've tried doing it with a method with a generic type parameter:
And the compiler wont accept it. Types arn't classes is the explanation |
|||
|
|