setAll 方法

void setAll(
  1. int at,
  2. Iterable<E> iterable
)
继承

此操作不支持不可修改的列表。

实现

void setAll(int at, Iterable<E> iterable) {
  throw new UnsupportedError("Cannot modify an unmodifiable list");
}