我正在閱讀Java LinkedBlockingQueue
源代碼,我有兩個關於put
operation的問題。Java LinkedBlockingQueue源代碼混淆
public void put(E e) throws InterruptedException {
if (e == null) throw new NullPointerException();
// Note: convention in all put/take/etc is to preset local var
// holding count negative to indicate failure unless set.
int c = -1;
Node<E> node = new Node<E>(e);
final ReentrantLock putLock = this.putLock;
final AtomicInteger count = this.count;
putLock.lockInterruptibly();
try {
/*
* Note that count is used in wait guard even though it is
* not protected by lock. This works because count can
* only decrease at this point (all other puts are shut
* out by lock), and we (or some other waiting put) are
* signalled if it ever changes from capacity. Similarly
* for all other uses of count in other wait guards.
*/
while (count.get() == capacity) {
notFull.await();
}
enqueue(node);
c = count.getAndIncrement();
if (c + 1 < capacity)
notFull.signal();
} finally {
putLock.unlock();
}
if (c == 0)
signalNotEmpty();
}
我不明白:
- 它檢查
c + 1 < capacity
,當它發出notFull.signal()
。爲什麼不使用c < capacity
? - 爲什麼當
c == 0
在函數結束時發出signalNotEmpty
?
另外,我也不明白爲什麼頭部/尾部需要是transient
?
Java 6真的是你感興趣的版本嗎? – 2014-11-06 05:36:25
@Tichodroma這個方法在Java 7或8中幾乎沒有變化。我將添加Java 8的代碼。 – 2014-11-06 05:49:25
OP,我已經添加了Java 8的相關源代碼。我可以更改鏈接到Java 8版本呢? – 2014-11-06 05:53:37