共计 851 个字符,预计需要花费 3 分钟才能阅读完成。
ConditionObject
ConditionObject 是 AQS 中的外部类,用于线程间通信,能够准确唤醒某个线程。
ConditionObject 中的成员变量是两个 Node, 别离形成 FIFO 队列的头节点和尾节点,condition 队列中 Node 出队 / 入队,由每个节点 Node 中的
static final int CONDITION = -2;
中成员变量管制。
// condition queue 的头节点
private transient Node firstWaiter;
// condition queue 的尾节点
private transient Node lastWaiter;
先看下 ConditionObject
的waite()
办法,它和 Object
的waite()
办法一样,都是让线程期待。
public final void await() throws InterruptedException {if (Thread.interrupted())
throw new InterruptedException();
Node node = addConditionWaiter();
int savedState = fullyRelease(node);
int interruptMode = 0;
while (!isOnSyncQueue(node)) {LockSupport.park(this);
if ((interruptMode = checkInterruptWhileWaiting(node)) != 0)
break;
}
if (acquireQueued(node, savedState) && interruptMode != THROW_IE)
interruptMode = REINTERRUPT;
if (node.nextWaiter != null) // clean up if cancelled
unlinkCancelledWaiters();
if (interruptMode != 0)
reportInterruptAfterWait(interruptMode);
}
正文完