日食 3.4。Java 编译器级别 1.6 JRE IBM 1.6
我们有一个库类,我们无法更改它的形式。
import java.util.Hashtable;
public class A extends Hashtable {
...
}
我们已经构建了一个实用程序类来提供对 A 的轻松访问。
public class B {
private A a;
public B() {
this.a = new A();
}
public B(final A props) {
this.a = props;
}
public B(final Map<String, String> props) {
this();
for (String key : props.keySet()) {
add(key, props.get(key));
}
}
@SuppressWarnings("unchecked")
public B add(final String name, final Object value) {
a.put(name, value);
return this;
}
}
当我们尝试从另一个类调用其中一个构造函数时,就会出现问题。
public class C {
public void stuff() {
A a = new A();
B b = new B(a);//Error in javac
}
}
Eclipse 编译它没有错误,当它通过 ant javac 和 jenkins 编译时,编译器会给出如下错误。
reference to B is ambiguous, both method B(com.foo.A) in com.bar.B and method B(java.util.Map<java.lang.String,java.lang.String>) in com.bar.B match
[javac] B b = new B(a);
这个错误应该发生在 javac 中吗?在我看来,eclipse 在选择更具体的方法方面是正确的。