I have 3 classes A, B, and C. The only thing they have in common is a getName() function, nothing else.
I have an array of type Class which stores the above classes.
Class[] classes = {A.class,B.class,C.class};
I then have a List that contains objects of types A, B, and C
List<?> list = new ArrayList<?>();
list.add(new A());
list.add(new B());
list.add(new C());
I want to access the objects in the list through a loop. I also want to access methods of the objects A, B, and C. So, I try casting them using the classes array.
for(int i = 0; i < classes.length;i++)
{
classes[i].cast(list.get(i)).getName(); //A,B,and C have method getName() in common
}
This gives me a compiler error: "The method getName() is not defined for type Object
Is there a way for the compiler to ignore this type of casting until runtime (I am sure it will work at runtime)? Or is there another solution that does what I expect(I am looking for a solution that does not involves changing the code of classes A, B, and C)
addon aList<?>? It shouldn't be possible (since there's no way to make sure that the object is of the right type for the list). – Andrzej Doyle Aug 10 '11 at 14:48List<?>is shorthand forList<? extends Object>. So adding anything inheriting fromObjectis valid – Paul Bellora Aug 10 '11 at 15:46List<Integer> iList = new ArrayList<Integer>(); List<?> list = iList; list.add("string");If the call toaddwere allowed,iListnow contains a String, leading to a ClassCastException at runtime despite the supposed type-safety of generics.) – Andrzej Doyle Aug 10 '11 at 16:41new ArrayList<?>(). – Paul Bellora Aug 10 '11 at 17:09