How can I print the type of a generic java type?
Reflection? Any tricks?
public class Foo<K> {
private K element;
@Override
public String toString() {
return "Type: " + K;
}
}
|
|
|
|
|||||||||||
|
|
Because of type erasure, you can't know that what was the type parameter when the class was constructed. But you can use However, there are some tricks that enable access to the type parameters. There are some tricks that Guice can do. Also if you create a subclass of Foo, like this: |
||||
|
|