這篇文章主要講解了“java中AQS-ConditionObject的用法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“java中AQS-ConditionObject的用法”吧!
目前創(chuàng)新互聯(lián)已為1000+的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬空間、網(wǎng)站托管維護、企業(yè)網(wǎng)站設(shè)計、江蘇網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
屬性 | 說明 |
---|---|
Node firstWaiter | 頭節(jié)點 |
Node lastWaiter | 尾節(jié)點 |
為Condition接口實現(xiàn),Condition的目的主要是替代Object的wait,notify,notifyAll方法的,它是基于Lock實現(xiàn)的.(而Lock是來替代synchronized方法).
結(jié)構(gòu)
使用時序圖
對應(yīng)Object.wait(),通過AQS機制釋放鎖定的資源,終止當(dāng)前線程,恢復(fù)后使用AQS獨占模式重新鎖定資源
acquireQueued:此時node節(jié)點已轉(zhuǎn)換為AQS中節(jié)點
public final void await() throws InterruptedException { if (Thread.interrupted()) throw new InterruptedException(); Node node = addConditionWaiter(); long 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); }
transferForSignal轉(zhuǎn)換節(jié)點后await()中acquireQueued(node,savedState)操作的節(jié)點已是AQS中的節(jié)點
isHeldExclusively:子類實現(xiàn).判斷是否獨家持有
public final void signal() { if (!isHeldExclusively()) throw new IllegalMonitorStateException(); Node first = firstWaiter; if (first != null) doSignal(first); }
感謝各位的閱讀,以上就是“java中AQS-ConditionObject的用法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對java中AQS-ConditionObject的用法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!