📅  最后修改于: 2020-11-15 04:09:52             🧑  作者: Mango
一个类不允许具有两个在类型擦除后可以具有相同签名的重载方法。
class Box {
//Compiler error
//Erasure of method print(List)
//is the same as another method in type Box
public void print(List stringList) { }
public void print(List integerList) { }
}