add 方法

void add(
  1. E value
)
override

在队列末尾添加 value

实现

void add(E value) {
  _sentinel._prepend(value, this);
  _elementCount++;
}