在当前条目之前添加给定元素 e 作为条目。
e
void prepend(E e) { DoubleLinkedQueueEntry<E>(e)._link(_previousLink, this); }