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

溫馨提示×

溫馨提示×

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

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

Object類wait及notify方法的案例分析

發布時間:2020-08-21 10:14:51 來源:億速云 閱讀:130 作者:小新 欄目:開發技術

小編給大家分享一下Object類wait及notify方法的案例分析,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

Object類中的wait和notify方法(生產者和消費者模式)  不是通過線程調用

  • wait():    讓正在當前對象上活動的線程進入等待狀態,無期限等待,直到被喚醒為止
  • notify():    讓正在當前對象上等待的線程喚醒
  • notifyAll():   喚醒當前對象上處于等待的所有線程

生產者和消費者模式 生產線程和消費線程達到均衡

wait方法和notify方法建立在synchronized線程同步的基礎之上

  • wait方法:   釋放當前對象占有的鎖
  • notify方法:   通知,不會釋放鎖

實現生產者和消費者模式  倉庫容量為10

代碼如下

import java.util.ArrayList;

public class Test_14 {
  public static void main(String[] args) {
    ArrayList list = new ArrayList();
    Thread t1 = new Thread(new ProducerThread(list));
    t1.setName("producer");
    Thread t2 = new Thread(new ConsumerThread(list));
    t2.setName("consumer");
    t1.start();
    t2.start();
  }
}
//生產者線程
class ProducerThread implements Runnable{
  private ArrayList arrayList;

  public ProducerThread(ArrayList arrayList) {
    this.arrayList = arrayList;
  }

  @Override
  public void run() {
    while (true) {
      synchronized (arrayList) {
        if (arrayList.size() > 9){
          try {
            arrayList.wait();
          } catch (InterruptedException e) {
            e.printStackTrace();
          }
        }
        try {
          Thread.sleep(1000);
        } catch (InterruptedException e) {
          e.printStackTrace();
        }
        arrayList.add(new Object());
        System.out.println(Thread.currentThread().getName() + "---> 生產" + "---庫存" + arrayList.size());
        arrayList.notify();
      }
    }
  }
}

//消費者線程
class ConsumerThread implements Runnable{
  private ArrayList arrayList;

  public ConsumerThread(ArrayList arrayList) {
    this.arrayList = arrayList;
  }

  @Override
  public void run() {
    while (true){
      synchronized (arrayList){
        if (arrayList.size() < 9){
          try {
            arrayList.wait();
          } catch (InterruptedException e) {
            e.printStackTrace();
          }
        }
        try {
          Thread.sleep(1000);
        } catch (InterruptedException e) {
          e.printStackTrace();
        }
        arrayList.remove(0);
        System.out.println(Thread.currentThread().getName() + "---> 消費" + "---庫存" + arrayList.size());
        arrayList.notify();
      }
    }
  }
}

看完了這篇文章,相信你對Object類wait及notify方法的案例分析有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

甘南县| 都匀市| 广西| 黑龙江省| 阿拉善盟| 科技| 汶川县| 梨树县| 宁夏| 台前县| 宝应县| 科技| 北辰区| 铅山县| 滦平县| 河津市| 安徽省| 宝丰县| 凤阳县| 金华市| 枣强县| 巴马| 郴州市| 洞口县| 井冈山市| 都昌县| 多伦县| 扎兰屯市| 东乡族自治县| 柏乡县| 丽江市| 蓝山县| 赤城县| 贡觉县| 宾阳县| 时尚| 兴宁市| 台安县| 舞钢市| 江达县| 特克斯县|