addAll 抽象方法

void addAll(
  1. Iterable<E> iterable
)

将 iterable 中所有元素添加到队列的末尾。队列的长度通过 iterable 的长度扩展。

实现

void addAll(Iterable<E> iterable);