我添加了三个带有参数的方法:
public static void doSomething(Object obj) {
System.out.println("Object called");
}
public static void doSomething(char[] obj) {
System.out.println("Array called");
}
public static void doSomething(Integer obj) {
System.out.println("Integer called");
}
当我打电话时doSomething(null)
,编译器将错误作为模棱两可的方法抛出。那么问题是因为Integer
和char[]
方法还是Integer
和Object
方法?
reference to doSomething is ambiguous
错误。
Integer
改为即可int
。