在RandomAccess类的java doc中写过 " List实现使用的标记接口,表示它们支持快速(通常是恒定时间)随机访问。此接口的主要目的是允许通用算法在应用于随机或顺序访问列表时改变其行为以提供良好的性能。"
但我发现了一些奇怪的事情
这是java.util包
中AbstractList.java中的subList方法public List<E> subList(int fromIndex, int toIndex) {
return (this instanceof RandomAccess ?
new RandomAccessSubList<>(this, fromIndex, toIndex) :
new SubList<>(this, fromIndex, toIndex));
}
RandomAccessSubList类的实现:
class RandomAccessSubList<E> extends SubList<E> implements RandomAccess {
RandomAccessSubList(AbstractList<E> list, int fromIndex, int toIndex) {
super(list, fromIndex, toIndex);
}
public List<E> subList(int fromIndex, int toIndex) {
return new RandomAccessSubList<>(this, fromIndex, toIndex);
}
}
SubList类实现:
SubList(AbstractList<E> list, int fromIndex, int toIndex) {
if (fromIndex < 0)
throw new IndexOutOfBoundsException("fromIndex = " + fromIndex);
if (toIndex > list.size())
throw new IndexOutOfBoundsException("toIndex = " + toIndex);
if (fromIndex > toIndex)
throw new IllegalArgumentException("fromIndex(" + fromIndex +
") > toIndex(" + toIndex + ")");
l = list;
offset = fromIndex;
size = toIndex - fromIndex;
this.modCount = l.modCount;
}
我认为在AbstractList类中,RandomAccessSubList是无用的,因为它将其数据传递给SubList类,其操作就像
new SubList<>(this, fromIndex, toIndex));
方法中的
答案 0 :(得分:5)
由于根列表快速访问随机索引,子列表也快速执行,因此将子列表标记为RandomAccess也是有意义的。
SubList和RandomAccessSubList通过继承共享相同的实现,但是一个未标记为RandomAccess,另一个未标记为RandomAccess。这就是子类有用的原因。