Java實現(xiàn)簡易生產(chǎn)者消費者模型過程解析
一、概述
一共兩個線程,一個線程生產(chǎn)產(chǎn)品,一個線程消費產(chǎn)品,使用同步代碼塊方法,同步兩個線程。當(dāng)產(chǎn)品沒有時,通知生產(chǎn)者生產(chǎn),生產(chǎn)者生產(chǎn)后,通知消費者消費,并等待消費者消費完。
需要注意的是,有可能出現(xiàn),停止生產(chǎn)產(chǎn)品后,消費者還沒未來得及消費生產(chǎn)者生產(chǎn)的最后一個產(chǎn)品,就結(jié)束消費,導(dǎo)致最后一個產(chǎn)品沒有被消費。
本例使用synchronize以及wait()、notify()實現(xiàn)簡易版的線程者消費者模型。
二、測試用例
這里的產(chǎn)品用筆來演示,每只筆都有其編號code
一共有四個類:分別是生產(chǎn)者類,產(chǎn)品類,消費者類,測試類

產(chǎn)品
package test.exception.producer_consumer_model;
/*
假設(shè)為產(chǎn)品為筆
*/
public class Production {
private String type = "";
private String color = "";
private long code = 0; // 產(chǎn)品編號
private boolean isProduced = false; // 是否生產(chǎn)完成 初始狀態(tài)為未生產(chǎn)狀態(tài)
private boolean isContinueProduce = true; // 是否停產(chǎn)該產(chǎn)品
public void setContinueProduce(boolean continueProduce) {
isContinueProduce = continueProduce;
}
public void setCode(long code) {
this.code = code;
}
public Production(){
}
public boolean isContinueProduce() {
return isContinueProduce;
}
public void setType(String type) {
this.type = type;
}
public void setColor(String color) {
this.color = color;
}
public void setProduced(boolean produced) {
isProduced = produced;
}
public boolean isProduced() {
return isProduced;
}
@Override
public String toString() {
return color + type + "-" + code;
}
}
生產(chǎn)者
package test.exception.producer_consumer_model;
public class Producer implements Runnable {
private final Production pen; // 產(chǎn)品
public Producer(Production pen) {
this.pen = pen;
}
// 生產(chǎn)
public void produce() {
long code = 0;
while (this.pen.isContinueProduce()) {
synchronized (this.pen) {
if (this.pen.isProduced()) {
try {
this.pen.wait(); // 等待消費者消費
} catch (InterruptedException e) {
e.printStackTrace();
}
}
// 開始生產(chǎn)
this.pen.setType("鉛筆");
this.pen.setColor("藍色");
this.pen.setCode(code++);
this.pen.setProduced(true);
System.out.println(this.pen + " is produced");
this.pen.notify();
}
}
System.out.println("finish producing");
}
@Override
public void run() {
produce();
}
}
消費者
package test.exception.producer_consumer_model;
public class Consumer implements Runnable {
private final Production pen;
public Consumer(Production pen) {
this.pen = pen;
}
// 持續(xù)消費
public void consumer() {
while (this.pen.isContinueProduce()) {
synchronized (this.pen) {
if (!this.pen.isProduced()) {
try {
this.pen.wait(); // 等待生產(chǎn)者生產(chǎn)
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println(this.pen + " is consumed"); // 使用
this.pen.setProduced(false); // 使用完后更新狀態(tài)
this.pen.notify();
}
}
// 確保停止生產(chǎn)后,能夠使用最后生產(chǎn)的一支筆
if (this.pen.isProduced()) {
System.out.println(this.pen + " is consumed");
}
System.out.println("finish using");
}
@Override
public void run() {
consumer();
}
}
主線程測試
package test.exception.producer_consumer_model;
public class Demo {
public static void main(String[] args) throws InterruptedException {
Production pen = new Production();
Consumer consumer = new Consumer(pen);
Producer producer = new Producer(pen);
new Thread(producer).start(); // 開啟生產(chǎn)者線程
new Thread(consumer).start(); // 開啟消費者線程
Thread.sleep(10000);
pen.setContinueProduce(false); // 10s后停止生產(chǎn)該類型的筆
}
}
運行結(jié)果

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Spring?Security密碼解析器PasswordEncoder自定義登錄邏輯
這篇文章主要為大家介紹了Spring?Security密碼解析器PasswordEncoder自定義登錄邏輯示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-08-08
Java 線程池_動力節(jié)點Java學(xué)院整理
系統(tǒng)啟動一個新線程的成本是比較高的,因為它涉及到與操作系統(tǒng)的交互。在這種情況下,使用線程池可以很好的提供性能,尤其是當(dāng)程序中需要創(chuàng)建大量生存期很短暫的線程時,更應(yīng)該考慮使用線程池2017-05-05
Java動態(tài)代理的兩種實現(xiàn)方式詳解【附相關(guān)jar文件下載】
這篇文章主要介紹了Java動態(tài)代理的兩種實現(xiàn)方式,結(jié)合實例形式分析了java動態(tài)代理的相關(guān)原理、實現(xiàn)方法與操作技巧,并附帶相關(guān)jar文件供讀者下載,需要的朋友可以參考下2019-03-03
SpringBoot集成EasyExcel實現(xiàn)Excel導(dǎo)入的方法
這篇文章主要介紹了SpringBoot集成EasyExcel實現(xiàn)Excel導(dǎo)入的方法,本文給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2021-01-01
java集合PriorityQueue優(yōu)先級隊列方法實例
這篇文章主要為大家介紹了java集合PriorityQueue優(yōu)先級隊列方法實例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-12-12

