前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >多线程案例:生产者和消费者

多线程案例:生产者和消费者

作者头像
全栈程序员站长
发布2021-05-19 11:11:02
5880
发布2021-05-19 11:11:02
举报
文章被收录于专栏:全栈程序员必看

 1.生产和消费的产品抽象类: public abstract class Product { public String name; public abstract String toString(); }

2.一个具体的产品类:

public class AProduct extends Product { public AProduct(String name) {         this.name = name;         // TODO Auto-generated constructor stub     } public String toString() {         // TODO Auto-generated method stub         return this.name;     } }

3.容器类(仓库):

import java.util.ArrayList;

/*  * 存放生产者和消费者的产品队列  * */ public class Container { private ArrayList arrList = new ArrayList(); private int LENGTH = 10; public boolean isFull() { return arrList.size()==LENGTH; } public boolean isEmpty() { return arrList.isEmpty(); }

/* 如果此处不加synchronized锁,那么也可以再调用push的地方加锁     * 既然此处加了锁,那么再别的地方可以不加锁     */ public synchronized void push(Object o) {         arrList.add(o); } // 如果此处不加synchronized锁,那么也可以再调用push的地方加锁 public synchronized Object pop() { Object lastOne = arrList.get(arrList.size()- 1);         arrList.remove(arrList.size()- 1); return lastOne; } }

4.休息一会,生产者和消费者都要休息,因此作为抽象基类:

public abstract class Sleep { public void haveASleep() throws InterruptedException { Thread.sleep((long)(Math.random()* 3000)); } }

/*  * 消费者线程  * */ public class Consumer extends Sleep implements Runnable { private Container contain =null; public Consumer(Container contain) { this.contain = contain; } public void run() { // TODO Auto-generated method stub while(true) { synchronized(contain) { while(contain.isEmpty()) { try{                         contain.wait(); }catch(InterruptedException e) { // TODO Auto-generated catch block                         e.printStackTrace(); } } } consume();//消费 try {                 haveASleep(); }catch(InterruptedException e) { // TODO Auto-generated catch block                 e.printStackTrace(); } synchronized(contain) {                 contain.notify(); } } } private void consume() {         Product a = (AProduct)contain.pop(); System.out.println("消费了一个产品"+ a.toString()); } }

/*  * 生产者线程  * */ public class Producator extends Sleep implements Runnable { private Container contain = null; public Producator(Container contain) { super(); this.contain = contain; } public void run() { // TODO Auto-generated method stub while(true) { synchronized(contain) { while(contain.isFull()) { try{                         contain.wait();// 阻塞当前线程,当前线程进入等待队列。这个时候只有等待别的线程来唤醒自己了。 }catch(InterruptedException e) { // TODO Auto-generated catch block                         e.printStackTrace(); } } }             producer();// 生产一个产品 try {                 haveASleep(); }catch(InterruptedException e) { // TODO Auto-generated catch block                 e.printStackTrace(); } synchronized(contain) {                 contain.notify();// 唤醒等待队列中正在等待的第一个线程,让其执行。 } } } public void producer() {         Product aProduct = new AProduct("pp:"+String.valueOf((int)(10*Math.random()))); System.out.println("生产了一个产品:"+ aProduct.toString());         contain.push(aProduct); } }

5. 写一个测试:

public class TestMain { /**      * @param args      */ public static void main(String[] args) { // TODO Auto-generated method stub Container contain = new Container();         Producator p = new Producator(contain);         Consumer c = new Consumer(contain); Thread pt =new Thread(p); Thread ct =new Thread(c);         pt.start();         ct.start(); } }

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/100530.html原文链接:

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021年5月6日 p,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
容器服务
腾讯云容器服务(Tencent Kubernetes Engine, TKE)基于原生 kubernetes 提供以容器为核心的、高度可扩展的高性能容器管理服务,覆盖 Serverless、边缘计算、分布式云等多种业务部署场景,业内首创单个集群兼容多种计算节点的容器资源管理模式。同时产品作为云原生 Finops 领先布道者,主导开源项目Crane,全面助力客户实现资源优化、成本控制。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档