vendredi 20 mars 2015

Generic vs wildcard unknown types

When is it recommended to do:



public <E> boolean hasPropertyX(List<E extends User> alist);


versus



public boolean hasPropertyX(List<? extends User> alist);


It would appear they both work just as well.


Aucun commentaire:

Enregistrer un commentaire