Possible Duplicate:
Java: Instanceof and Generics
I am trying to write a function which cast a generic List to specific type List. Find the code below
public <T>List<T> castCollection(List srcList, Class<T> clas){
List<T> list =new ArrayList<T>();
for (Object obj : srcList) {
if(obj instanceof T){
...
}
}
return list;
}
But obj instanceof T
showing a compilation error -
Cannot perform instanceof check against type parameter T. Use instead its erasure Object >instead since further generic type information will be erased at runtime.
any clarification or way to get the desired result?
Thanks in advance. :)