1

synchronizedミューテックスのようなものを扱うためにJavaで使用されます。ただし、 Java のLockようなインターフェースの実装ではReentrantLock、このキーワードは使用されません。すべてのコードは通常のコードに見えます。では、地球上の複数のスレッドをどのように処理するのでしょうか?

次のコードが関連していると思います。

tryAcquireメソッドSync_ReentrantLock

protected final boolean tryAcquire(int acquires) {
    final Thread current = Thread.currentThread();
    int c = getState();
    if (c == 0) {
        if (!hasQueuedPredecessors() &&
            compareAndSetState(0, acquires)) {
            setExclusiveOwnerThread(current);
            return true;
        }
    }
    else if (current == getExclusiveOwnerThread()) {
        int nextc = c + acquires;
        if (nextc < 0)
            throw new Error("Maximum lock count exceeded");
        setState(nextc);
        return true;
    }
    return false;
}

SyncextendsAbstractQueuedSynchronizerと関連するコード:

final boolean acquireQueued(final Node node, int arg) {
    boolean failed = true;
    try {
        boolean interrupted = false;
        for (;;) {
            final Node p = node.predecessor();
            if (p == head && tryAcquire(arg)) {
                setHead(node);
                p.next = null; // help GC
                failed = false;
                return interrupted;
            }
            if (shouldParkAfterFailedAcquire(p, node) &&
                parkAndCheckInterrupt())
                interrupted = true;
        }
    } finally {
        if (failed)
            cancelAcquire(node);
    }
}

キーワードが使用されていないsynchronizedようですが、どのようにミューテックスを保証しますか?

4

1 に答える 1

4

Java 1.5(?) 以降、いわゆるCompare-And-Swapメソッドを使用したハードウェア ロックの JVM サポートがあります。これが呼び出される時点まで、ソースに従ってください。

理解を深めるために Doug Lea の論文も参照してください: http://gee.cs.oswego.edu/dl/papers/aqs.pdf

于 2013-03-24T05:08:17.383 に答える