欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

浅谈java线程中生产者与消费者的问题

程序员文章站 2024-03-13 12:48:57
一、概念 生产者与消费者问题是一个金典的多线程协作的问题.生产者负责生产产品,并将产品存放到仓库;消费者从仓库中获取产品并消费。当仓库满时,生产者必须停止生产,直到仓库有...

一、概念

生产者与消费者问题是一个金典的多线程协作的问题.生产者负责生产产品,并将产品存放到仓库;消费者从仓库中获取产品并消费。当仓库满时,生产者必须停止生产,直到仓库有位置存放产品;当仓库空时,消费者必须停止消费,直到仓库中有产品。

解决生产者/消费者问题主要用到如下几个技术:1.用线程模拟生产者,在run方法中不断地往仓库中存放产品。2.用线程模拟消费者,在run方法中不断地从仓库中获取产品。3

 . 仓库类保存产品,当产品数量为0时,调用wait方法,使得当前消费者线程进入等待状态,当有新产品存入时,调用notify方法,唤醒等待的消费者线程。当仓库满时,调用wait方法,使得当前生产者线程进入等待状态,当有消费者获取产品时,调用notify方法,唤醒等待的生产者线程。

二、实例

package book.thread.product;

public class consumer extends thread{
  private warehouse warehouse;//消费者获取产品的仓库
  private boolean running = false;//是否需要结束线程的标志位
  public consumer(warehouse warehouse,string name){
    super(name);
    this.warehouse = warehouse;
  }
  public void start(){
    this.running = true;
    super.start();
  }
  public void run(){
    product product;
    try {
      while(running){
        //从仓库中获取产品
        product = warehouse.getproduct();
        sleep(500);
      }
    } catch (interruptedexception e) {
      e.printstacktrace();
    }
  } 
  //停止消费者线程
  public void stopconsumer(){
    synchronized(warehouse){
      this.running = false;
      warehouse.notifyall();//通知等待仓库的线程
    }
  }
  //消费者线程是否在运行
  public boolean isrunning(){
    return running;
  }
}

 

package book.thread.product;

public class producer extends thread{
   private warehouse warehouse;//生产者存储产品的仓库
  private static int producename = 0;//产品的名字
  private boolean running = false;//是否需要结束线程的标志位

  public producer(warehouse warehouse,string name){
    super(name);
    this.warehouse = warehouse;
  }
  public void start(){
    this.running = true;
    super.start();
  }
  public void run(){
    product product;
    //生产并存储产品
    try {
    while(running){
      product = new product((++producename)+"");
      this.warehouse.storageproduct(product);
      sleep(300);
      }
    } catch (interruptedexception e) {
      e.printstacktrace();
    }
  }
  //停止生产者线程
  public void stopproducer(){
    synchronized(warehouse){
      this.running = false;
      //通知等待仓库的线程
      warehouse.notifyall();
    }
  }
  //生产者线程是否在运行
  public boolean isrunning(){
    return running;
  }
}

 

package book.thread.product;

public class product {
  private string name;//产品名
  public product(string name){
    this.name = name;
  }
  public string tostring(){
    return "product-"+name;
  }
}

 

package book.thread.product;

//产品的仓库类,内部采用数组来表示循环队列,以存放产品
public class warehouse {
  private static int capacity = 11;//仓库的容量
  private product[] products;//仓库里的产品
  //[front,rear]区间的产品未被消费
  private int front = 0;//当前仓库中第一个未被消费的产品的下标
  private int rear = 0;//仓库中最后一个未被消费的产品下标加1
  public warehouse(){
    this.products = new product[capacity];
  }
  public warehouse(int capacity){
    this();
    if(capacity > 0){
      capacity = capacity +1;
      this.products = new product[capacity];
    }
  }

  //从仓库获取一个产品
  public product getproduct() throws interruptedexception{
    synchronized(this){
      boolean consumerrunning = true;//标志消费者线程是否还在运行
      thread currentthread = thread.currentthread();//获取当前线程
      if(currentthread instanceof consumer){
        consumerrunning = ((consumer)currentthread).isrunning();
      }else{
        return null;//非消费者不能获取产品
      }
      //若消费者线程在运行中,但仓库中没有产品了,则消费者线程继续等待
      while((front==rear) && consumerrunning){
        wait();
        consumerrunning = ((consumer)currentthread).isrunning();
      }
      //如果消费者线程已经停止运行,则退出该方法,取消获取产品
      if(!consumerrunning){
        return null;
      }
      //获取当前未被消费的第一个产品
      product product = products[front];
      system.out.println("consumer[" + currentthread.getname()+"] getproduct:"+product);
      //将当前未被消费产品的下标后移一位,如果到了数组末尾,则移动到首部
      front = (front+1+capacity)%capacity;
      system.out.println("仓库中还没有被消费的产品数量:"+(rear+capacity-front)%capacity);
      //通知其他等待线程
      notify();
      return product;
    }
  }
  //向仓库存储一个产品
  public void storageproduct(product product) throws interruptedexception{
  synchronized(this){
    boolean producerrunning = true;//标志生产者线程是否在运行
    thread currentthread = thread.currentthread();
    if(currentthread instanceof producer){
      producerrunning = ((producer)currentthread).isrunning();
    }else{
      return;
    }
    //如果最后一个未被消费的产品与第一个未被消费的产品的下标紧挨着,则说明没有存储空间了。
    //如果没有存储空间了,而生产者线程还在运行,则生产者线程等待仓库释放产品
    while(((rear+1)%capacity == front) && producerrunning){
      wait();
      producerrunning = ((producer)currentthread).isrunning();
    }
    //如果生产线程已经停止运行了,则停止产品的存储
    if(!producerrunning){
      return;
    }
    //保存产品到仓库
    products[rear] = product;
    system.out.println("producer[" + thread.currentthread().getname()+"] storageproduct:" + product);
    //将rear下标循环后移一位
    rear = (rear + 1)%capacity;
    system.out.println("仓库中还没有被消费的产品数量:"+(rear + capacity -front)%capacity);
    notify();
    }
  }
}

 

package book.thread.product;

public class testproduct {
  public static void main(string[] args) {
    warehouse warehouse = new warehouse(10);//建立一个仓库,容量为10
    //建立生产者线程和消费者
    producer producers1 = new producer(warehouse,"producer-1");
    producer producers2 = new producer(warehouse,"producer-2");
    producer producers3 = new producer(warehouse,"producer-3");
    consumer consumer1 = new consumer(warehouse,"consumer-1");
    consumer consumer2 = new consumer(warehouse,"consumer-2");
    consumer consumer3 = new consumer(warehouse,"consumer-3");
    consumer consumer4 = new consumer(warehouse,"consumer-4");
    //启动生产者线程和消费者线程
    producers1.start();
    producers2.start();
    consumer1.start();
    producers3.start();
    consumer2.start();
    consumer3.start();
    consumer4.start();
    //让生产者/消费者程序运行1600ms
    try {
      thread.sleep(1600);
    } catch (interruptedexception e) {
      e.printstacktrace();
    }
    //停止消费者线程
    producers1.stopproducer();
    consumer1.stopconsumer();
    producers2.stopproducer();
    consumer2.stopconsumer();
    producers3.stopproducer();
    consumer3.stopconsumer();
    consumer4.stopconsumer();
  }
}

输出结果:

producer[producer-1] storageproduct:product-1
仓库中还没有被消费的产品数量:1
consumer[consumer-2] getproduct:product-1
仓库中还没有被消费的产品数量:0
producer[producer-3] storageproduct:product-3
仓库中还没有被消费的产品数量:1
producer[producer-2] storageproduct:product-2
仓库中还没有被消费的产品数量:2
consumer[consumer-3] getproduct:product-3
仓库中还没有被消费的产品数量:1
consumer[consumer-1] getproduct:product-2
仓库中还没有被消费的产品数量:0
producer[producer-1] storageproduct:product-4
仓库中还没有被消费的产品数量:1
consumer[consumer-4] getproduct:product-4
仓库中还没有被消费的产品数量:0
producer[producer-3] storageproduct:product-6
仓库中还没有被消费的产品数量:1
producer[producer-2] storageproduct:product-5
仓库中还没有被消费的产品数量:2
consumer[consumer-1] getproduct:product-6
仓库中还没有被消费的产品数量:1
consumer[consumer-2] getproduct:product-5
仓库中还没有被消费的产品数量:0
producer[producer-1] storageproduct:product-7
仓库中还没有被消费的产品数量:1
consumer[consumer-3] getproduct:product-7
仓库中还没有被消费的产品数量:0
producer[producer-3] storageproduct:product-8
仓库中还没有被消费的产品数量:1
producer[producer-2] storageproduct:product-9
仓库中还没有被消费的产品数量:2
consumer[consumer-4] getproduct:product-8
仓库中还没有被消费的产品数量:1
producer[producer-1] storageproduct:product-10
仓库中还没有被消费的产品数量:2
producer[producer-3] storageproduct:product-11
仓库中还没有被消费的产品数量:3
producer[producer-2] storageproduct:product-12
仓库中还没有被消费的产品数量:4
consumer[consumer-1] getproduct:product-9
仓库中还没有被消费的产品数量:3
consumer[consumer-2] getproduct:product-10
仓库中还没有被消费的产品数量:2
consumer[consumer-3] getproduct:product-11
仓库中还没有被消费的产品数量:1
producer[producer-3] storageproduct:product-13
仓库中还没有被消费的产品数量:2
producer[producer-1] storageproduct:product-14
仓库中还没有被消费的产品数量:3
producer[producer-2] storageproduct:product-15
仓库中还没有被消费的产品数量:4
consumer[consumer-4] getproduct:product-12
仓库中还没有被消费的产品数量:3
consumer[consumer-1] getproduct:product-13
仓库中还没有被消费的产品数量:2
consumer[consumer-2] getproduct:product-14
仓库中还没有被消费的产品数量:1
producer[producer-1] storageproduct:product-16
仓库中还没有被消费的产品数量:2
producer[producer-3] storageproduct:product-17
仓库中还没有被消费的产品数量:3
producer[producer-2] storageproduct:product-18
仓库中还没有被消费的产品数量:4

分析:在main方法中建立了一个产品仓库,并未该仓库关联了3个生产者线程和4个消费者线程,启动这些线程,使生产 者/消费者模型运作起来,当程序运行1600ms时,所有的生产者停止生产产品,消费者停止消费产品。

生产者线程product在run方法中没300ms便生产一个产品,并存入仓库;消费者线程consumer在run方法中没500ms便从仓库中取一个产品。

仓库类warehouse负责存放产品和发放产品。storageproduct方法负责存储产品,当仓库满时,当前线程进入等待状态,即如果生产者线程a在调用storageproduct方法以存储产品时,发现仓库已满,无法存储时,便会进入等待状态。当存储产品成功时,调用notify方法,唤醒等待的消费者线程。

getproduct方法负责提前产品,当仓库空时,当前线程进入等待状态,即如果消费者线程b在调用getproduct方法以获取产品时,发现仓库空了,便会进入等待状态。当提取产品成功时,调用notify方法,唤醒等待的生产者线程。

以上这篇浅谈java线程中生产者与消费者的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。