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

溫馨提示×

溫馨提示×

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

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

Java生產者和消費者例子_動力節點Java學院整理

發布時間:2020-09-12 19:57:03 來源:腳本之家 閱讀:124 作者:mrr 欄目:編程語言

生產者-消費者(producer-consumer)問題,也稱作有界緩沖區(bounded-buffer)問題,兩個進程共享一個公共的固定大小的緩沖區。其中一個是生產者,用于將消息放入緩沖區;另外一個是消費者,用于從緩沖區中取出消息。問題出現在當緩沖區已經滿了,而此時生產者還想向其中放入一個新的數據項的情形,其解決方法是讓生產者此時進行休眠,等待消費者從緩沖區中取走了一個或者多個數據后再去喚醒它。同樣地,當緩沖區已經空了,而消費者還想去取消息,此時也可以讓消費者進行休眠,等待生產者放入一個或者多個數據時再喚醒它。

一,首先定義公共資源類,其中的變量number是保存的公共數據。

并且定義兩個方法,增加number的值和減少number的值。由于多線程的原因,必須加上synchronized關鍵字,注意while判斷的條件。

Java代碼  

二,分別定義生產

 /** 
 * 公共資源類 
 */ 
 public class PublicResource { 
   private int number = 0; 
  
   /** 
   * 增加公共資源 
   */ 
   public synchronized void increace() { 
     while (number != 0) { 
       try { 
         wait(); 
       } catch (InterruptedException e) { 
         e.printStackTrace(); 
       } 
     } 
     number++; 
     System.out.println(number); 
     notify(); 
   } 
  
   /** 
   * 減少公共資源 
   */ 
   public synchronized void decreace() { 
     while (number == 0) { 
       try { 
         wait(); 
       } catch (InterruptedException e) { 
         e.printStackTrace(); 
       } 
     } 
     number--; 
     System.out.println(number); 
     notify(); 
   } 
 } 

者線程和消費者線程,并模擬多次生產和消費,即增加和減少公共資源的number值

Java代碼  

/** 
 * 生產者線程,負責生產公共資源 
 */ 
 public class ProducerThread implements Runnable { 
   private PublicResource resource; 
  
   public ProducerThread(PublicResource resource) { 
     this.resource = resource; 
   } 
  
   @Override 
   public void run() { 
     for (int i = 0; i < 10; i++) { 
       try { 
         Thread.sleep((long) (Math.random() * 1000)); 
       } catch (InterruptedException e) { 
         e.printStackTrace(); 
       } 
       resource.increace(); 
     } 
   } 
 } 
 /** 
 * 消費者線程,負責消費公共資源 
 */ 
 public class ConsumerThread implements Runnable { 
   private PublicResource resource; 
  
   public ConsumerThread(PublicResource resource) { 
     this.resource = resource; 
   } 
  
   @Override 
   public void run() { 
     for (int i = 0; i < 10; i++) { 
       try { 
         Thread.sleep((long) (Math.random() * 1000)); 
       } catch (InterruptedException e) { 
         e.printStackTrace(); 
       } 
       resource.decreace(); 
     } 
   } 
 } 

三,模擬多個生產者和消費者操作公共資源的情形,結果須保證是在允許的范圍內。

Java代碼  

public class ProducerConsumerTest { 
   public static void main(String[] args) { 
     PublicResource resource = new PublicResource(); 
     new Thread(new ProducerThread(resource)).start(); 
     new Thread(new ConsumerThread(resource)).start(); 
     new Thread(new ProducerThread(resource)).start(); 
     new Thread(new ConsumerThread(resource)).start(); 
     new Thread(new ProducerThread(resource)).start(); 
     new Thread(new ConsumerThread(resource)).start(); 
   } 
 } 

以上所述是小編給大家介紹的Java生產者和消費者例子,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

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

AI

禄丰县| 杨浦区| 湘西| 宝丰县| 汉寿县| 星座| 沙田区| 辽宁省| 江津市| 孟村| 盘山县| 昌邑市| 奉贤区| 无棣县| 土默特左旗| 吉林市| 建德市| 万年县| 河池市| 万源市| 施甸县| 广安市| 滨州市| 开平市| 佛山市| 琼海市| 武胜县| 营山县| 保德县| 南靖县| 临沂市| 南京市| 乳山市| 佳木斯市| 建平县| 民丰县| 山东省| 卓尼县| 阜宁县| 海丰县| 白银市|