add 方法

void add(
  1. E value
)
override

value 添加到队列的末尾。

实现

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