亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

JAVA中怎么使用synchronized、wait、notify實現同步通信

發布時間:2021-06-18 15:03:43 來源:億速云 閱讀:192 作者:Leah 欄目:大數據

本篇文章為大家展示了JAVA中怎么使用synchronized、wait、notify實現同步通信,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

package com.study;

public class Demo {
  
  public static void main(String[] args) {
    Demo demo = new Demo();
    final OutPutClass putPutClass = demo.new OutPutClass();
    Thread thread = new Thread(new Runnable() {
      
      @Override
      public void run() {
        while(true){
          putPutClass.ins();
        }
      }
    });
    thread.start();
    
    Thread thread2 = new Thread(new Runnable() {
      
      @Override
      public void run() {
        while(true){
          putPutClass.des();
        }
      }
    });
    thread2.start();
  }
  
  class OutPutClass{
    private boolean isSync = true;
    public synchronized void ins(){
      try {
        while(!isSync){
          this.wait();
        }
        Thread.sleep(1000L);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      System.out.println("正在上傳中....");
      isSync = false;
      this.notify();
    }
    public synchronized void des(){
      while(isSync){
        try {
          this.wait();
          Thread.sleep(1000L);
        } catch (InterruptedException e) {
          e.printStackTrace();
        }
      }
      System.out.println("下載結束....");
      isSync = true;
      this.notify();
    }
  }
}

上述內容就是JAVA中怎么使用synchronized、wait、notify實現同步通信,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

富锦市| 正镶白旗| SHOW| 旅游| 改则县| 禹州市| 林州市| 文化| 鸡泽县| 武夷山市| 金湖县| 桦川县| 扬中市| 宁安市| 辉南县| 奇台县| 冕宁县| 西峡县| 贺兰县| 桑植县| 乐平市| 龙里县| 金华市| 澳门| 高陵县| 根河市| 东源县| 永春县| 元江| 长垣县| 徐闻县| 保山市| 历史| 台中县| 长治市| 三门县| 温州市| 福鼎市| 德清县| 布拖县| 邵阳市|