Advanced programming with Java generics
List<? super Animal> (lower bound) can add Animal and its subtypes. List<? extends Animal> (upper bound) cannot add Animal or any subtype (except null). Reading bounded lists When reading lower-…
List<? super Animal> (lower bound) can add Animal and its subtypes. List<? extends Animal> (upper bound) cannot add Animal or any subtype (except null). Reading bounded lists When reading lower-…