這篇文章主要介紹了java中怎么實(shí)現(xiàn)可重入的自旋鎖的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇java中怎么實(shí)現(xiàn)可重入的自旋鎖文章都會(huì)有所收獲,下面我們一起來看看吧。
無錫ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書合作)期待與您的合作!
說明
1、是指試圖獲得鎖的線程不會(huì)堵塞,而是通過循環(huán)獲得鎖。
2、優(yōu)點(diǎn):減少上下文切換的消耗。
缺點(diǎn):循環(huán)消耗CPU。
實(shí)例
public class ReentrantSpinLock { private AtomicReference<Thread> owner = new AtomicReference<>(); // 可重入次數(shù) private int count = 0; // 加鎖 public void lock() { Thread current = Thread.currentThread(); if (owner.get() == current) { count++; return; } while (!owner.compareAndSet(null, current)) { System.out.println("--我在自旋--"); } } //解鎖 public void unLock() { Thread current = Thread.currentThread(); //只有持有鎖的線程才能解鎖 if (owner.get() == current) { if (count > 0) { count--; } else { //此處無需CAS操作,因?yàn)闆]有競爭,因?yàn)橹挥芯€程持有者才能解鎖 owner.set(null); } } } public static void main(String[] args) { ReentrantSpinLock spinLock = new ReentrantSpinLock(); Runnable runnable = () -> { System.out.println(Thread.currentThread().getName() + "開始嘗試獲取自旋鎖"); spinLock.lock(); try { System.out.println(Thread.currentThread().getName() + "獲取到了自旋鎖"); Thread.sleep(4000); } catch (InterruptedException e) { e.printStackTrace(); } finally { spinLock.unLock(); System.out.println(Thread.currentThread().getName() + "釋放了了自旋鎖"); } }; Thread thread1 = new Thread(runnable); Thread thread2 = new Thread(runnable); thread1.start(); thread2.start(); } }
關(guān)于“java中怎么實(shí)現(xiàn)可重入的自旋鎖”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“java中怎么實(shí)現(xiàn)可重入的自旋鎖”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
當(dāng)前文章:java中怎么實(shí)現(xiàn)可重入的自旋鎖
本文路徑:http://aaarwkj.com/article42/jposec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、用戶體驗(yàn)、手機(jī)網(wǎng)站建設(shè)、自適應(yīng)網(wǎng)站、靜態(tài)網(wǎng)站、網(wǎng)站維護(hù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)