首页 > 代码库 > 生产者消费者问题
生产者消费者问题
import java.util.*; public class ProducerConsumerTest{ final int BUFFER_SIZE=10;//缓冲区最大值 Queue<Integer> queue;//共享缓冲队列 public ProducerConsumerTest(){ queue=new LinkedList<Integer>(); } public static void main(String[] args){ ProducerConsumerTest PC=new ProducerConsumerTest(); int count=100; System.out.println("开始生产消费了哦"); while(count-->0){ new Thread(PC.new Producer()).start(); new Thread(PC.new Consumer()).start(); } } class Consumer implements Runnable{ @Override public void run() { synchronized(queue){ if(queue.size()==0){ try { queue.wait();//释放锁 } catch (InterruptedException e) { e.printStackTrace(); } }else{ int x=queue.remove(); System.out.println("消费 :"+x); queue.notify();//唤醒生产者 } } } } class Producer implements Runnable{ @Override public void run() { synchronized(queue){ if(queue.size()==BUFFER_SIZE){ try { queue.wait(); } catch (InterruptedException e) { e.printStackTrace(); } }else{ int x=queue.size()+1; queue.add(x); System.out.println("生产 :"+x); queue.notify(); } } } } }
生产者消费者问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。