在当前条目前方插入给定的 e 作为条目。
e
void prepend(E e) { DoubleLinkedQueueEntry<E>(e)._link(_previousLink, this); }