setAll 方法

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

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

实现

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