addLast 方法

void addLast(
  1. E value
)
override

在队列末尾添加 value

实现

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