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

溫馨提示×

溫馨提示×

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

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

如何解決Java多線程的臨界資源問題

發布時間:2021-08-04 10:21:40 來源:億速云 閱讀:141 作者:小新 欄目:編程語言

小編給大家分享一下如何解決Java多線程的臨界資源問題,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

臨界資源問題的原因:某一個線程在對臨界資源進行訪問時,還沒來得及完全修改臨界資源的值,臨界資源就被其他線程拿去訪問,導致多個線程訪問同一資源。直觀表現為打印結果順序混亂。

解決方法:加鎖

靜態方法中用類鎖,非靜態方法中用對象鎖。

1.同步代碼段:synchronized(){...}

2.同步方法:使用關鍵字synchronized修飾的方法

3.使用顯式同步鎖ReentrantLock

鎖池描述的即為鎖外等待的狀態

方法一:同步代碼段:synchronized(){...}

public class SourceConflict {
  public static void main(String[] args) {
    //實例化4個售票員,用4個線程模擬4個售票員
    
    Runnable r = () -> {
      while (TicketCenter.restCount > 0) {
        synchronized(" ") {
          if (TicketCenter.restCount <= 0) {
            return;
          }
          System.out.println(Thread.currentThread().getName() + "賣出一張票,剩余" + --TicketCenter.restCount + "張票");
        }
      }
    };
    
    //用4個線程模擬4個售票員
    Thread thread1 = new Thread(r, "thread-1");
    Thread thread2 = new Thread(r, "thread-2");
    Thread thread3 = new Thread(r, "thread-3");
    Thread thread4 = new Thread(r, "thread-4");
    
    //開啟線程
    thread1.start();
    thread2.start();
    thread3.start();
    thread4.start();
    
  }  
}

//實現四名售票員共同售票,資源共享,非獨立
//Lambda表達式或匿名內部類內部捕獲的局部變量必須顯式的聲明為 final 或實際效果的的 final 類型,而捕獲實例或靜態變量是沒有限制的
class TicketCenter{
  public static int restCount = 100; 
}

方法二:同步方法,即使用關鍵字synchronized修飾的方法

public class SourceConflict2 {
  public static void main(String[] args) {
    //實例化4個售票員,用4個線程模擬4個售票員
    
    Runnable r = () -> {
      while (TicketCenter.restCount > 0) {
        sellTicket();
      }
    };
    
    //用4個線程模擬4個售票員
    Thread thread1 = new Thread(r, "thread-1");
    Thread thread2 = new Thread(r, "thread-2");
    Thread thread3 = new Thread(r, "thread-3");
    Thread thread4 = new Thread(r, "thread-4");
    
    //開啟線程
    thread1.start();
    thread2.start();
    thread3.start();
    thread4.start();
    
  }
  
  private synchronized static void sellTicket() {  
    if (TicketCenter.restCount <= 0) {
      return;
    }
    System.out.println(Thread.currentThread().getName() + "賣出一張票,剩余" + --TicketCenter.restCount + "張票");
  }
}

class TicketCenter{
  public static int restCount = 100; 
}

方法三:使用顯式同步鎖ReentrantLock

import java.util.concurrent.locks.ReentrantLock;

public class SourceConflict3 {
  public static void main(String[] args) {
    //實例化4個售票員,用4個線程模擬4個售票員
    
    //顯式鎖
    ReentrantLock lock = new ReentrantLock();
    Runnable r = () -> {
      while (TicketCenter.restCount > 0) {
        lock.lock();
        if (TicketCenter.restCount <= 0) {
          return;
        }
        System.out.println(Thread.currentThread().getName() + "賣出一張票,剩余" + --TicketCenter.restCount + "張票");
        lock.unlock();
      }
    };
    
    //用4個線程模擬4個售票員
    Thread thread1 = new Thread(r, "thread-1");
    Thread thread2 = new Thread(r, "thread-2");
    Thread thread3 = new Thread(r, "thread-3");
    Thread thread4 = new Thread(r, "thread-4");
    
    //開啟線程
    thread1.start();
    thread2.start();
    thread3.start();
    thread4.start();
    
  }  
}
class TicketCenter{
  public static int restCount = 100; 
}

看完了這篇文章,相信你對“如何解決Java多線程的臨界資源問題”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

砀山县| 神池县| 浑源县| 贺州市| 三都| 社会| 黄平县| 山阳县| 会泽县| 桂东县| 上犹县| 马边| 平顶山市| 肇东市| 洪雅县| 南安市| 福贡县| 柳林县| 淮安市| 鹤庆县| 油尖旺区| 都昌县| 潮州市| 桐梓县| 安宁市| 图木舒克市| 金门县| 葫芦岛市| 顺昌县| 鄂尔多斯市| 社旗县| 宝山区| 屯留县| 神木县| 汝州市| 彰武县| 高州市| 循化| 虹口区| 宽城| 铁岭市|