Java泛型不能過載


一個類不允許有兩個過載方法,可以在型別擦除後使用相同的簽名。

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) { }
}