I got a list, programmed like this: public class MyList<T>. Is there any way to use the T variable to get the name of class (so I can, from within MyList, know if T is String, Socket, etc.)?
EDIT: Nevermind, found the answer here.
|
|
The only way I've found to do it is to add a private data member:
|
|||
|
|
|
You are seeing the result of Type Erasure. From that page...
This also looks like this question which has a pretty good answer as well. |
|||
|
|
|
I'm not 100% sure if this works in all cases (needs at least Java 1.5):
This will output:
|
|||||||||
|
|
Yes you can retrieve a type argument so long as it is supplied via a class definition:
See TypeTools for more info on TypeResolver. |
|||
|
|
|
I'm able to get the Class of the generic type this way:
You need two functions from this file: http://code.google.com/p/hibernate-generic-dao/source/browse/trunk/dao/src/main/java/com/googlecode/genericdao/dao/DAOUtil.java For more explanation: http://www.artima.com/weblogs/viewpost.jsp?thread=208860 |
|||
|
|