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

Before I look through my generic data structure for a value's index, I'd like to see if it is even an instance of the type this has been parametrized to.

But Eclipse complains when I do this:

@Override
public int indexOf(Object arg0) {
    if (!(arg0 instanceof E)) {
        return -1;
    }

This is the error message:

Cannot perform instanceof check against type parameter E. Use instead its erasure Object since generic type information will be erased at runtime

What is the better way to do it?

share|improve this question

5 Answers

up vote 27 down vote accepted

The error message says it all. At runtime, the type is gone, there is no way to check for it.

You could catch it by making a factory for your object like this:

 public static <T> MyObject<T> createMyObject(Class<T> type) {
    return new MyObject<T>(type);
 }

And then in the object's constructor store that type, so variable so that your method could look like this:

        if (arg0 != null && !(this.type.isAssignableFrom(arg0.getClass()))
        {
            return -1;
        }
share|improve this answer
I don't think you want Class.isAssignableFrom. – Tom Hawtin - tackline Oct 15 '09 at 4:10
@Tom, I wrote this last night from memory, and I fixed it to actually pass the class (duh!) but otherwise, I don't understand why you wouldn't want it (maybe I need more coffee this morning, I'm only on my first cup). – Yishai Oct 15 '09 at 13:24
I'm with Tom. Could you clarify that? Using isAssignableFrom() would have been my pick for the job. Maybe I'm missing something? – luis.espinal Apr 2 '10 at 16:04
4  
@luis, Tom's comment probably meant I should use isInstance() and pass the actual arg0 parameter. It has the advantage of avoiding the null check. – Yishai Apr 7 '10 at 13:36
I have a similar situation but I cannot fully understand the answer. Can you please clarify it better for dummy like me? – Rubens Mariuzzo Apr 7 '11 at 15:24
show 3 more comments

Provided your class extends a class with a generic parameter, you can also get this at runtime via reflection, and then use that for comparison, i.e.

class YourClass extends SomeOtherClass<String>
{

   private Class<?> clazz;

   public Class<?> getParameterizedClass()
   {
      if(clazz == null)
      {
         ParameterizedType pt = (ParameterizedType)this.getClass().getGenericSuperclass();
          clazz = (Class<?>)pt.getActualTypeArguments()[0];
       }
       return clazz;
    }
}

In the case above, at runtime you will get String.class from getParameterizedClass(), and it caches so you don't get any reflection overhead upon multiple checks. Note that you can get the other parameterized types by index from the ParameterizedType.getActualTypeArguments() method.

share|improve this answer

Or you could catch a failed attempt to cast into E eg.

public int indexOf(Object arg0){
  try{
    E test=(E)arg0;
    return doStuff(test);
  }catch(ClassCastException e){
    return -1;
  }
}
share|improve this answer
+1 A pragmatic non-over engineered solution for a simple check! I wish I could up voted this more – h3nr1x Oct 30 '12 at 23:16
5  
This wouldn't work. E is erased at runtime, so the cast won't fail, you will just get a compiler warning about it. – Yishai Jan 9 at 17:21

Technically you shouldn't have to, that's the point of generics, so you can do compile-type checking:

public int indexOf(E arg0) {
   ...
}

but then the @Override may be a problem if you have a class hierarchy. Otherwise see Yishai's answer.

share|improve this answer
yeah, the List interface demands that the function take an object parameter. – Rosarch Oct 15 '09 at 3:18
you're implementing List? Why aren't you implementing List<E> ? – Jason S Oct 15 '09 at 3:21
(see for example the declaration of ArrayList: java.sun.com/j2se/1.5.0/docs/api/java/util/ArrayList.html) – Jason S Oct 15 '09 at 3:23
@Rosarch: the List interface's indexOf() method does not require that the argument given is the same type as the object you are looking for. it just has to be .equals() to it, and objects of different types can be .equals() to each other. This is the same issue as for the remove() method, see: stackoverflow.com/questions/104799/… – newacct Oct 15 '09 at 6:32
[[[sheepishly]]] never mind, I thought indexOf() required E as a parameter rather than Object. (why did they do that?!??!) – Jason S Oct 15 '09 at 13:03
show 1 more comment

The runtime type of the object is a relatively arbitrary condition to filter on. I suggest keeping such muckiness away from your collection. This is simply achieved by having your collection delegate to a filter passed in a construction.

public interface FilterObject {
     boolean isAllowed(Object obj);
}

public class FilterOptimizedList<E> implements List<E> {
     private final FilterObject filter;
     ...
     public FilterOptimizedList(FilterObject filter) {
         if (filter == null) {
             throw NullPointerException();
         }
         this.filter = filter;
     }
     ...
     public int indexOf(Object obj) {
         if (!filter.isAllows(obj)) {
              return -1;
         }
         ...
     }
     ...
}

     final List<String> longStrs = new FilterOptimizedList<String>(
         new FilterObject() { public boolean isAllowed(Object obj) {
             if (obj == null) {
                 return true;
             } else if (obj instanceof String) {
                 String str = (String)str;
                 return str.length() > = 4;
             } else {
                 return false;
             }
         }}
     );
share|improve this answer
(Although you might want to do an instance type check if you are using Comparator or similar.) – Tom Hawtin - tackline Oct 15 '09 at 4:46

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.