prepend 方法

void prepend(
  1. E e
)

在当前条目之前添加给定元素 e 作为条目。

实现

void prepend(E e) {
  DoubleLinkedQueueEntry<E>(e)._link(_previousLink, this);
}