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

溫馨提示×

溫馨提示×

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

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

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

浪卡子县| 长葛市| 鹤壁市| 龙游县| 徐汇区| 环江| 潮安县| 嵊州市| 中西区| 阳东县| 博客| 海门市| 伊通| 苏尼特右旗| 汝城县| 井研县| 积石山| 泽普县| 黔东| 新竹县| 南华县| 桑日县| 元阳县| 平果县| 德庆县| 西平县| 金华市| 红桥区| 田阳县| 合肥市| 岳普湖县| 南丹县| 鸡泽县| 稻城县| 鄢陵县| 文安县| 榕江县| 涿鹿县| 永春县| 桂阳县| 富顺县|