Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just learned about this fine looking syntax

Collections.<String>emptyList()

to get an empty List with elements which are supposedly of type String. Java's source looks like this:

public static final List EMPTY_LIST = new EmptyList<Object>();
:
public static final <T> List<T> emptyList() {
  return (List<T>) EMPTY_LIST;
}

Now if I code a method in that way where the generic type does not appear in the parameter list, is there any way how I can access the actual class that becomes T?

I'm saying, up to now my approach to code the same thing would have been

private <T> T get(String key, Class<T> clazz) {
  // here I can do whatever I want with clazz, e.g.:
  return clazz.cast(value);
}

If I removed the clazz-parameter I wouldn't be able to do the cast(). Obviously I could do

  return (T) value;

but that gives me the usual warning Type safety: Unchecked cast from Object to T. Ok, @SuppressWarnings("unchecked") helps here, but actually I want to do something with the intended return type of the method. If I add a local variable

T retValue;

I'd have to initialise it with something, null doesn't help. After I assign it like

@SuppressWarnings("unchecked")
T retValue = (T) value;

I could do, e.g.

retValue.getClass().getName()

but if the cast fails I end up with no information about T again.

Since Java (or at least my Java 6) does not have the generic info any more during runtime, I currently can't think of a way to do this. Is there a way? Or do I have to stick with my "old" approach here?

Please note that the example I lined out is very simple and doesn't make much sense. I want to do more complicated stuff here, but that's out of the scope.

share|improve this question
looks like a duplicate of this question – Nitzan Volman Dec 8 '11 at 19:00
@NitzanVolman: To a certain extent you are right, but it's not completely. – sjngm Dec 8 '11 at 19:04

4 Answers

up vote 4 down vote accepted

If you want the generic type at runtime you need to either have it as a field or create a sub-class of a type for a specific combination of types.

e.g.

List<String> list = new ArrayList<String>() {}; // creates a generic sub-type
final Class type = (Class) ((ParameterizedType) list.getClass()
                            .getGenericSuperclass()).getActualTypeArguments()[0];
System.out.println(type);

prints

class java.lang.String
share|improve this answer
That's cool, I didn't know about that. – Stephen P Dec 8 '11 at 20:15
1  
i.e. you can't get the generic type of a class, but can get the types of a super class (and super interfaces) – Peter Lawrey Dec 8 '11 at 20:20
@PeterLawrey: Whow, thanks. However, if I use List<T> list = new ArrayList<T>() {}; it doesn't work. getActualTypeArguments()[0] is a sun.reflect.generics.reflectiveObjects.TypeVariableImpl. Does that make sense? – sjngm Dec 8 '11 at 20:58
Can you print list.getClass()? I suspect its ArrayList in your case. – Peter Lawrey Dec 8 '11 at 21:00
1  
Unless you construct the original collection with a real type, it won't have a real parameter type. – Peter Lawrey Dec 8 '11 at 21:20
show 5 more comments

You can't, unfortunately. All generics and type parameters are erased in runtime. So in runtime the type of your T is simply Object

share|improve this answer
1  
Agreed, I have several methods like private <T> T get(String key, Class<T> clazz) because of this. – Dave Dec 8 '11 at 19:11

retValue.getClass().getName() will always return the runtime type of the object and not the class name of the parameter type.

If you want to grab the parameter class, there's no other way than to use your first solution. (That is, pass the class object explicitly.)

share|improve this answer
You are right, that would have been another side-effect I didn't want to happen. – sjngm Dec 8 '11 at 18:58

As you mentioned, Java generics are build time only. They are not used at run time.

Because of this, the old approach you were using will be your only way to accomplish this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.