中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

甘泉县| 崇阳县| 辽阳市| 娄底市| 泗水县| 宁波市| 延长县| 静海县| 翁源县| 广灵县| 汕头市| 浦县| 永定县| 秀山| 永和县| 普兰店市| 玉环县| 施甸县| 通渭县| 山西省| 玉龙| 北辰区| 石河子市| 饶阳县| 安康市| 清丰县| 茌平县| 大兴区| 大理市| 洛宁县| 阳新县| 望都县| 黄平县| 明水县| 长顺县| 通化市| 琼海市| 玉屏| 土默特右旗| 太湖县| 三门峡市|