I have a basic question regarding assignment of a list of subclass to a list of superclass.
So I have something like the following:
Class B extends A;
List <B> bList = new ArrayList<B>();
List <A> aList = bList;
Why does this last assignment fail? Sorry for the newbie question
List<Dog>a subclass ofList<Animal>? Why aren't Java's generics implicitly polymorphic? – Daniel Pryden Jun 7 '11 at 5:51