码迷,mamicode.com
首页 > 其他好文 > 详细

消费者与生产者---LinkedList方式模拟

时间:2018-05-04 17:07:26      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:read   ati   object   div   linked   move   fir   rri   限制   

采用LinkedList数据结构方式来模拟消费者与生产者模型,小Demo

import java.util.LinkedList;

public class MyQueue {

    private final LinkedList<Object> list = new LinkedList<>();
    
    private final Integer MAX = 5;
    
    private final Integer MIN = 0;
    
    private final Object obj = new Object();
    
    
    public void put(Object object) {
        synchronized (obj) {
//判断list里面是否超过最大元素个数限制
while(list.size() == MAX) { try { obj.wait(); } catch (InterruptedException e) { e.printStackTrace(); } }
//往LinkedList添加元素 list.add(object); System.out.println(
"element " + object + " added" );
//唤醒消费者消费 obj.notify(); //notify需在synchronize方法块内才可使用 } }
public Object get() { Object temp = null; synchronized (obj) {
//判断list是否有元素
while(list.size() == MIN) { try { obj.wait(); } catch (InterruptedException e) { e.printStackTrace(); } }
       //移除元素 temp
= list.removeFirst(); System.out.println("element " + temp + " consumer"); obj.notify(); } return temp; } public static void main(String[] args) { final MyQueue t = new MyQueue(); new Thread(new Runnable() { @Override public void run() { t.put("a"); t.put("b"); t.put("c"); t.put("d"); } },"t1").start(); new Thread(new Runnable() { @Override public void run() { try { t.get(); Thread.sleep(1000); t.get(); } catch (InterruptedException e) { e.printStackTrace(); } } },"t2").start(); } }

 

消费者与生产者---LinkedList方式模拟

标签:read   ati   object   div   linked   move   fir   rri   限制   

原文地址:https://www.cnblogs.com/codechange/p/8990794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!