Java Generics - Không quá tải
Một lớp không được phép có hai phương thức được nạp chồng có thể có cùng một chữ ký sau khi xóa kiểu.
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) { }
}