91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中的可重入鎖詳解

發布時間:2021-09-10 18:19:47 來源:億速云 閱讀:150 作者:chen 欄目:編程語言

本篇內容主要講解“Java中的可重入鎖詳解”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Java中的可重入鎖詳解”吧!

本文里面講的是廣義上的可重入鎖,而不是單指JAVA下的ReentrantLock。

可重入鎖,也叫做遞歸鎖,指的是同一線程 外層函數獲得鎖之后 ,內層遞歸函數仍然有獲取該鎖的代碼,但不受影響。

在JAVA環境下 ReentrantLock 和synchronized 都是 可重入鎖。

下面是使用實例:

package reentrantLock; public class Test implements Runnable{   public synchronized void get(){    System.out.println(Thread.currentThread().getId());    set();  }   public synchronized void set(){    System.out.println(Thread.currentThread().getId());  }   @Override  public void run() {    get();  }  public static void main(String[] args) {    Test ss=new Test();    new Thread(ss).start();    new Thread(ss).start();    new Thread(ss).start();  }}

package reentrantLock; import java.util.concurrent.locks.ReentrantLock; public class Test implements Runnable {  ReentrantLock lock = new ReentrantLock();   public void get() {    lock.lock();    System.out.println(Thread.currentThread().getId());    set();    lock.unlock();  }   public void set() {    lock.lock();    System.out.println(Thread.currentThread().getId());    lock.unlock();  }   @Override  public void run() {    get();  }   public static void main(String[] args) {    Test ss = new Test();    new Thread(ss).start();    new Thread(ss).start();    new Thread(ss).start();  }}

可重入鎖最大的作用是避免死鎖

我們以自旋鎖作為例子,

public class SpinLock {private AtomicReference<Thread> owner =new AtomicReference<>();public void lock(){Thread current = Thread.currentThread();while(!owner.compareAndSet(null, current)){}}public void unlock (){Thread current = Thread.currentThread();owner.compareAndSet(current, null);}}

對于自旋鎖來說,

1、若有同一線程兩調用lock() ,會導致第二次調用lock位置進行自旋,產生了死鎖說明這個鎖并不是可重入的。(在lock函數內,應驗證線程是否為已經獲得鎖的線程)

2、若1問題已經解決,當unlock()第一次調用時,就已經將鎖釋放了。實際上不應釋放鎖。(采用計數次進行統計)修改之后,如下:

public class SpinLock1 {private AtomicReference<Thread> owner =new AtomicReference<>();private int count =0;public void lock(){Thread current = Thread.currentThread();if(current==owner.get()) {count++;return ;} while(!owner.compareAndSet(null, current)){ }}public void unlock (){Thread current = Thread.currentThread();if(current==owner.get()){if(count!=0){count--;}else{owner.compareAndSet(current, null);} } }}

該自旋鎖即為可重入鎖。

到此,相信大家對“Java中的可重入鎖詳解”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

土默特左旗| 青神县| 垫江县| 航空| 寿宁县| 准格尔旗| 南宫市| 尼木县| 神农架林区| 乐清市| 兴仁县| 七台河市| 玉田县| 邹城市| 平潭县| 洛隆县| 莱西市| 理塘县| 尼玛县| 阜平县| 灵石县| 聂拉木县| 四子王旗| 蚌埠市| 茶陵县| 台前县| 四川省| 临朐县| 嫩江县| 紫云| 徐闻县| 睢宁县| 邳州市| 房产| 阿克苏市| 湄潭县| 宁阳县| 宣武区| 东乡族自治县| 醴陵市| 吕梁市|