我试图了解 java 如何处理函数调用中的歧义。在下面的代码中,对的调用method
是模棱两可的,但method2
不是!!!。
我觉得两者都是模棱两可的,但是为什么当我注释掉对 的调用时会编译method
?为什么method2
不模棱两可?
public class A {
public static <K> List<K> method(final K arg, final Object... otherArgs) {
System.out.println("I'm in one");
return new ArrayList<K>();
}
public static <K> List<K> method(final Object... otherArgs) {
System.out.println("I'm in two");
return new ArrayList<K>();
}
public static <K, V> Map<K, V> method2(final K k0, final V v0, final Object... keysAndValues) {
System.out.println("I'm in one");
return new HashMap<K,V> ();
}
public static <K, V> Map<K, V> method2(final Object... keysAndValues) {
System.out.println("I'm in two");
return new HashMap<K,V>();
}
public static void main(String[] args) {
Map<String, Integer> c = A.method2( "ACD", new Integer(4), "DFAD" );
//List<Integer> d = A.method(1, "2", 3 );
}
}
编辑:这出现在评论中:到目前为止,许多 IDE 都报告为模棱两可 - IntelliJ 和 Netbeans。但是,它可以从命令行/maven 编译得很好。