I know why one shouldn't do that. But is there way to explain to a layman why this is not possible. You can explain this to a layman easily : Animal animal = new Dog();. A dog is a kind of animal but a list of dogs is not a list of animals.
|
|
|||||
|
|
Imagine you create a list of Dogs. You then declare this as List<Animal> and hand it to a colleague. He, not unreasonably, believes he can put a Cat in it. He then gives it back to you, and you now have a list of Dogs, with a Cat in the middle of it. Chaos ensues. It's important to note that this restriction is there due to the mutability of the list. In Scala (for example), you can declare that a list of Dogs is a list of Animals. That's because Scala lists are (by default) immutable, and so adding a Cat to a list of Dogs would give you a new list of Animals. |
|||||||||||||||||||
|
|
The answer you're looking for is to do with concepts called covariance and contravariance. Some languages support these (.NET 4 adds support, for example), but some of the basic problems are demonstrated by code like this:
Because Cat would derive from animal, a compile-time check would suggest that it can be added to List. But, at runtime, you can't add a Cat to a list of Dogs! So, though it may seem intuitively simple, these problems are actually very complex do deal with. There's an MSDN overview of co/contravariance in .NET 4 here: http://msdn.microsoft.com/en-us/library/dd799517(VS.100).aspx - it's all applicable to java too, though I don't know what Java's support is like. |
|||
|
|
|
The best layman answer I can give is this: because in designing generics they do not want to repeat the same decision that was made to Java's array type system that made it unsafe. This is possible with arrays:
This code compiles just fine because of the way array's type system works in Java. It would raise an The decision was made not to allow such unsafe behavior for generics. See also elsewhere: Java Arrays Break Type Safety, which many considers one of Java Design Flaws. |
||||
|
|
|
A List<Animal> is an object where you can insert any animal, for example a cat or an octopus. An ArrayList<Dog> isn't. |
|||
|
|
|
What you're trying to do is the following:
That should work. |
|||||
|
|
Suppose you could do this. One of the things that someone handed a |
|||||||||||||||||||
|
|
This is a good reading and should explain it a litlle bit more: http://blogs.msdn.com/csharpfaq/archive/2010/02/16/covariance-and-contravariance-faq.aspx |
|||
|
|
|
First, let's define our animal kingdom:
Consider two parameterized interfaces:
And implementations of these where
What you are asking is quite reasonable in the context of this
So why doesn't Java do this automatically? Consider what this would mean for
If Java automatically allowed So what is the difference between Sometimes the type parameter is used in both positions, making the interface invariant.
For backwards compatibility reasons, Java defaults to invariance. You must explicitly choose the appropriate variance with This is a real hassle -- every time someone uses the a generic type, they must make this decision! Surely the authors of This is called 'Declaration Site Variance', and is available in Scala.
|
||||
|
|
|
If you couldn't mutate the list then your reasoning would be perfectly sound. Unfortunately a If This is an instance of the more general Liskov substitution principal. The fact that mutation causes you an issue here happens elsewhere. Consider the types Is a You could define a You could even add methods that calculate its You could then define a But what happens when you start allowing mutation via Now, You can't use your You could make a new method on Similarly a |
|||
|
|
|
I'd say the simplest answer is to ignore the cats and dogs, they aren't relevant. What's important is the list itself.
and
are different types, that Dog derives from Animal has no bearing on this at all. This statement is invalid
for the same reason this one is
While Dog may inherit from Animal, the list class generated by
doesn't inherit from the list class generated by
It's a mistake to assume that because two classes are related that using them as generic parameters will then make those generic classes also be related. While you could certainly add a dog to a
that doesn't imply that
is a subclass of
|
|||
|
|
|
Notice that if you have
then, if you could do
this does not turn |
|||
|
|
By inheriting you are actually creating common type for several classes . Here you have a common animal type . you are using it by creating an array in type of Animal and keeping values of similar types(inherited types dog, cat ,etc..). Eg:
....... Got it? |
||||
|
|
