参见英文答案 > Method has the same erasure as another method in type 6个
我正在尝试解决问题,我想出了这个解决方案(简化):
package help;
public class Problem {
private static class A
它不会编译,因为help.Problem.C中的“foo(T)与help.Problem.A中的foo(T)冲突;两种方法都有相同的擦除,但都没有覆盖其他方法”.
最佳答案
原文链接:https://www.f2er.com/java/437491.html