在java中允许指定函数返回的类型,例如下面的代码
public class Test {
static class Dad {
Dad me() {
return this;
}
}
static class Son extends Dad {
Son me() {
return this;
}
}
}
已验证。
让我们看看ArrayList
课。它具有覆盖clone()
功能(至少我在 Oracle jdk 1.7 源代码中看到它)
public Object clone() {
try {
@SuppressWarnings("unchecked")
ArrayList<E> v = (ArrayList<E>) super.clone();
v.elementData = Arrays.copyOf(elementData, size);
v.modCount = 0;
return v;
} catch (CloneNotSupportedException e) {
// this shouldn't happen, since we are Cloneable
throw new InternalError();
}
}
不返回ArrayList<E>
而只是返回有什么意义Object
?