Generici Java - Nessun sovraccarico
Una classe non può avere due metodi sovraccaricati che possono avere la stessa firma dopo la cancellazione del tipo.
class Box {
//Compiler error
//Erasure of method print(List<String>)
//is the same as another method in type Box
public void print(List<String> stringList) { }
public void print(List<Integer> integerList) { }
}