This code:
class Class1 {
void fred(String aString) {
System.out.println("a");
System.out.println(aString);
}
}
public class Test2 extends Class1
{
void fred(Object anObject) {
System.out.println("b");
System.out.println((String)anObject);
}
public static void main(String args[])
{
Test2 obj = new Test2();
obj.fred("Hello World"); // no trouble doing this
}
}
produces the message:
Test2.java:18: Reference to fred is ambiguous. It is defined in void fred(java.lang.Object) and void fred(java.lang.String).
obj.fred("Hello World"); // no trouble doing this
^
However, swapping the two "Fred" methods:
class Class1 {
void fred(Object anObject) {
System.out.println("b");
System.out.println((String)anObject);
}
}
public class Test2 extends Class1
{
void fred(String aString) {
System.out.println("a");
System.out.println(aString);
}
public static void main(String args[])
{
Test2 obj = new Test2();
obj.fred("Hello World"); // no trouble doing this
}
}
seems to work fine. My reading of the section of the JLS governing
overloading resolution is that both should work. In particular,
15.11.2.2 makes no reference to the origin of the methods when testing
for maximal specificity.
class Class1 {
void fred(String aString) {
System.out.println("a");
System.out.println(aString);
}
}
public class Test2 extends Class1
{
void fred(Object anObject) {
System.out.println("b");
System.out.println((String)anObject);
}
public static void main(String args[])
{
Test2 obj = new Test2();
obj.fred("Hello World"); // no trouble doing this
}
}
produces the message:
Test2.java:18: Reference to fred is ambiguous. It is defined in void fred(java.lang.Object) and void fred(java.lang.String).
obj.fred("Hello World"); // no trouble doing this
^
However, swapping the two "Fred" methods:
class Class1 {
void fred(Object anObject) {
System.out.println("b");
System.out.println((String)anObject);
}
}
public class Test2 extends Class1
{
void fred(String aString) {
System.out.println("a");
System.out.println(aString);
}
public static void main(String args[])
{
Test2 obj = new Test2();
obj.fred("Hello World"); // no trouble doing this
}
}
seems to work fine. My reading of the section of the JLS governing
overloading resolution is that both should work. In particular,
15.11.2.2 makes no reference to the origin of the methods when testing
for maximal specificity.
- duplicates
-
JDK-4038412 Compiler improperly reports ambiguous method
-
- Closed
-
- relates to
-
JDK-4219051 incorrect "reference ... is ambiguous" when overriding method in several classes
-
- Closed
-