You might want to read through the oracle tutorial on generics.
The important section is:
But what about an "animal cage"?
English is ambiguous, so to be precise
let's assume we're talking about an
"all-animal cage":
Cage<Animal> animalCage = ...;
This
is a cage designed to hold all kinds
of animals, mixed together. It must
have bars strong enough to hold in the
lions, and spaced closely enough to
hold in the butterflies. Such a cage
might not even be feasible to build,
but if it is, then:
animalCage.add(king);
animalCage.add(monarch);
Since a lion
is a kind of animal (Lion is a subtype
of Animal), the question then becomes,
"Is a lion cage a kind of animal cage?
Is Cage<Lion> a subtype of
Cage<Animal>?". By the above
definition of animal cage, the answer
must be "no". This is surprising! But
it makes perfect sense when you think
about it: A lion cage cannot be
assumed to keep in butterflies, and a
butterfly cage cannot be assumed to
hold in lions. Therefore, neither cage
can be considered an "all-animal"
cage.