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) { }
}
热门文章
优秀文章