addLast 方法

void addLast(
  1. E value
)
override

value 添加到队列的末尾。

实现

void addLast(E value) {
  _add(value);
}