JAVA中怎么使用synchronized、wait、notify實現(xiàn)同步通信

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

創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供三元網(wǎng)站建設、三元做網(wǎng)站、三元網(wǎng)站設計、三元網(wǎng)站制作等企業(yè)網(wǎng)站建設、網(wǎng)頁設計與制作、三元企業(yè)網(wǎng)站模板建站服務,10年三元做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡服務。

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("下載結(jié)束....");
      isSync = true;
      this.notify();
    }
  }
}

上述內(nèi)容就是JAVA中怎么使用synchronized、wait、notify實現(xiàn)同步通信,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

本文標題:JAVA中怎么使用synchronized、wait、notify實現(xiàn)同步通信
網(wǎng)址分享:http://bm7419.com/article36/phoipg.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、微信小程序、靜態(tài)網(wǎng)站、搜索引擎優(yōu)化、網(wǎng)站改版、手機網(wǎng)站建設

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

微信小程序開發(fā)