Consider the following Java class definitions:
class Animal {}
class Lion extends Animal {}
When defining a covariant Cage for Animals I use this code in Java:
class Cage<T extends Animal> {
void add(T animal) { System.out.println("Adding animal..."); }
}
But the following Java example …
public static void main(String... args) {
Cage<? extends Animal> animals = null;
Cage<Lion> lions = null;
animals = lions; // Works!
animals.add(new Lion()); // Error!
}
… fails to compile with the following error:
The method add(capture#2-of ? extends Animal)
in the type Cage
is not applicable to for the arguments (Lion)
Is this done because otherwise a different type like Tiger could be added after animals = lions and fail at runtime?
Could a special (hypothetical) rule be made that would not rejected it iff there would be only one sub-type of Animal?
(I know that I could replace add‘s T with Animal.)
In java :
This is a cage, but you don’t know what kind of animals it accepts.
Ok, you add no opinion about what sort of cage animals was, so lion violates no expectation.
You don’t know what sort of cage animals is. In this particular case, it happens to be a cage for lions you put a lion in, fine, but the rule that would allow that would just allow putting any sort of animal into any cage. It is properly disallowed.
In Scala :
Cage[+T]: ifBextendsA, then aCage[B]should be considered aCage[A].Given that,
animals = lionsis allowed.But this is different from java, the type parameter is definitely
Animal, not the wildcard? extends Animal. You are allowed to put an animal in aCage[Animal], a lion is an animal, so you can put a lion in a Cage[Animal] that could possibly be a Cage[Bird]. This is quite bad.Except that it is in fact not allowed (fortunately). Your code should not compile (if it compiled for you, you observed a compiler bug). A covariant generic parameter is not allowed to appear as an argument to a method. The reason being precisely that allowing it would allow putting lions in a bird cage. It T appears as
+Tin the definition ofCage, it cannot appears as an argument to methodadd.So both language disallow putting lions in birdcages.
Regarding your updated questions.
Is it done because otherwise a tiger could be added?
Yes, this is of course the reason, the point of the type system is to make that impossible. Would that cause un runtime error? In all likelihood, it would at some point, but not at the moment you call add, as actual type of generic is not checked at run time (type erasure). But the type system usually rejects every program for which it cannot prove that (some kind of) errors will not happen, not just program where it can prove that they do happen.
Could a special (hypothetical) rule be made that would not rejected it iff there would be only one sub-type of Animal?
Maybe. Note that you still have two types of animals, namely
AnimalandLion. So the important fact is that aLioninstance belongs to both types. On the other hand, anAnimalinstance does not belong to typeLion.animals.add(new Lion())could be allowed (the cage is either a cage for any animals, or for lions only, both ok) , butanimals.add(new Animal())should not (as animals could be a cage for lions only).But anyway, it sounds like a very bad idea. The point of inheritance in object oriented system is that sometime later, someone else working somewhere else can add subtype, and that will not cause a correct system to become incorrect. In fact, the old code does not even need to be recompiled (maybe you do not have the source). With such a rule, that would not be true any more