How to declare mixedList with generics for such snapshot without modifying the rest of the code?
List mixedList = new ArrayList();
if(flagA) {
ClassA a = new ClassA(); //comes from elsewhere
mixedList.add(a)
} else {
List<ClassB> bList = new ArrayList<ClassB>(); //comes from elsewhere
mixedList = bList; //error
}
I can do:
List<Object> mixedList = new ArrayList<Object>();
if(flagA) {
...
} else {
...
mixedList.addAll(bList);
}
but is there a way to avoid changing the code?
bListis not assignable tomixedList. – Oli Charlesworth Aug 2 '11 at 22:51