7

http://www.java2s.com/Open-Source/Java-Open-Source-Library/7-JDK/java/java/util/concurrent/ConcurrentLinkedQueue.java.htm

上記が ConcurrentLinkedQueue のソースコードです。1つの条件を理解できません。

offer メソッドからの以下のスニペット コードで、条件(p == q)がどのようになるか

  public boolean offer(E e) {
        checkNotNull(e);
        final Node<E> newNode = new Node<E>(e);

        for (Node<E> t = tail, p = t;;) {
            Node<E> q = p.next;
            if (q == null) {
                // p is last node
                if (p.casNext(null, newNode)) {
                    // Successful CAS is the linearization point
                    // for e to become an element of this queue,
                    // and for newNode to become "live".
                    if (p != t) // hop two nodes at a time
                        casTail(t, newNode);  // Failure is OK.
                    return true;
                }
                // Lost CAS race to another thread; re-read next
            }
            else if (p == q)
                // We have fallen off list.  If tail is unchanged, it
                // will also be off-list, in which case we need to
                // jump to head, from which all live nodes are always
                // reachable.  Else the new tail is a better bet.
                p = (t != (t = tail)) ? t : head;
            else
                // Check for tail updates after two hops.
                p = (p != t && t != (t = tail)) ? t : q;
        }
    }

また、「リストから外れました」という著者の意味は何ですか

4

2 に答える 2

6

を使用ConcurrentLinkedQueueすると、内部リストをトラバースしながら同時に変更できます。これは、見ているノードが同時に削除された可能性があることを意味します。このような状況を検出するために、削除されたノードの次のポインターがそれ自体を指すように変更されます。詳しくはupdateHead(L302)をご覧ください。

于 2013-09-09T11:51:06.897 に答える