针对生产者消费者问题
四个角色:生产者、消费者、仓库、产品
仓库只能存在一件产品,生产者放入,消费者取出
仓库中不存在产品,生产者放入,否则停止生产并等待,直到仓库中的产品被消费者取出
仓库中存在产品,消费者取出,否则停止取出并等待,直到生产者再次放入产品
这是一个线程同步问题,生产者和消费者共享同一个产品,并且生产者和消费者之间相互依赖,互为条件
对于生产者,没有生产产品,要通知消费者等待,生产之后又要通知消费者取出
对于消费者,取出产品后,要通知生产者再次生产
在此问题中,仅使用synchronized是不够的
synchronized可阻止并发更新同一个共享资源,实现同步
synchronized不能用于实现不同线程之间的通信
两种解决办法:管程法、信号灯法
管程法
生产者:负责生产数据模块(方法、对象、线程、进程)
消费者:负责处理数据模块(方法、对象、线程、进程)
缓冲区:消费者不能直接使用生产者的数据,需要经过缓冲区
生产者将数据放入缓冲区,消费者从缓冲区中取走数据
//测试 生产者消费者模型-->利用缓冲区解决 管程法
//生产者 消费者 产品 缓冲区
public class TestPC {
public static void main(String[] args) {
SynContainer container = new SynContainer();
new Productor(container).start();
new Consumer(container).start();
}
}
//生产者
class Productor extends Thread{
SynContainer container;
public Productor(SynContainer container){
this.container = container;
}
//生产
@Override
public void run() {
for (int i = 1; i < 100; i++) {
container.push(new Bread(i));
System.out.println("生产第" + i + "个面包");
}
}
}
//消费者
class Consumer extends Thread{
SynContainer container;
public Consumer(SynContainer container){
this.container = container;
}
//消费
@Override
public void run() {
for (int i = 1; i < 100; i++) {
System.out.println("消费第" + container.pop().id + "个面包");
}
}
}
//产品
class Bread{
int id; //产品编号
public Bread(int id) {
this.id = id;
}
}
//缓冲区
class SynContainer{
//容器大小
Bread[] breads = new Bread[10];
//容器计数器
int count = 0;
//生产者放入产品
public synchronized void push(Bread bread){
//如果容器满了,需要等待消费者消费面包
if(count == breads.length){
//通知消费者消费,生产等待
try {
this.wait(); //等待
} catch (InterruptedException e) {
e.printStackTrace();
}
}
//如果没有满,需要生产者生产面包
breads[count] = bread;
count++;
//通知消费者消费
this.notifyAll();
}
//消费者消费产品
public synchronized Bread pop(){
//判断能否消费
if(count == 0){
//等待生产者生产,消费者等待
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
//如果可以消费
count--;
Bread bread = breads[count];
//通知生产者生产
this.notifyAll();
return bread;
}
}
信号灯法
设置标志位,为true则生产者\消费者等待,为false则消费者\生产者通知另一方通行
//测试生产者消费者问题 信号灯法 设置标志位
public class TestPC2 {
public static void main(String[] args) {
Book book = new Book();
new Writer(book).start();
new Reader(book).start();
}
}
//生产者 作家
class Writer extends Thread{
Book book;
public Writer(Book book){
this.book = book;
}
//出版
@Override
public void run() {
for (int i = 0; i < 100; i++) {
if(i%2==0){
this.book.publish("深入理解Java虚拟机");
}else{
this.book.publish("剑指offer");
}
}
}
}
//消费者 读者
class Reader extends Thread{
Book book;
public Reader(Book book){
this.book = book;
}
//阅读
@Override
public void run() {
for (int i = 0; i < 100; i++) {
book.read();
}
}
}
//产品 书
class Book{
//作家写书,读者等待
//读者观看,作家等待
String book;
boolean flag = true;
//出版
public synchronized void publish(String book){
if(!flag){
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println("作家出版了:" + book);
//通知读者阅读
this.notifyAll();
this.book = book;
this.flag = !this.flag; //切换标志位
}
//阅读
public synchronized void read(){
if(flag){
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println("阅读了:" + book);
//通知作家出版
this.notifyAll();
this.flag = !this.flag; //切换标志位
}
}