append 方法

void append(
  1. E e
)

将给定的元素 e 作为条目添加到当前条目之后。

实现

void append(E e) {
  DoubleLinkedQueueEntry<E>(e)._link(this, _nextLink);
}