Java Generics - Keine Überlastung
Eine Klasse darf nicht über zwei überladene Methoden haben, die nach dem Löschen des Typs dieselbe Signatur haben können.
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) { }
}