这使用 Eclipse 编译 find:
abstract class CollectionView implements Collection<Object> {
...
public Object[] toArray(Object[] o) {
if (fast) {
return get(map).toArray(o);
} else {
synchronized (map) {
return get(map).toArray(o);
}
}
}
...
}
class KeySet extends CollectionView implements Set<Object> {
protected Collection<Object> get(Map<Object, Object> map) {
return map.keySet();
}
protected Object iteratorNext(Map.Entry entry) {
return entry.getKey();
}
}
但是在使用 Ant 时编译失败:
错误:KeySet 不是抽象的,并且不会覆盖 Set 中的抽象方法 toArray(T[])
我可以看到为什么代码会使用 Eclipse 进行编译:KeySet 已经从 CollectionView 继承了 toArray(T[]) 方法的实现。
但是为什么我使用 Ant 编译时它会失败?
<javac srcdir="src" destdir="bin" debug="on">
<compilerarg value="-Xlint:unchecked"/>
<compilerarg value="-Xlint:deprecation"/>
</javac>