`
jack.zhao829
  • 浏览: 23972 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

阻塞队列的实现

    博客分类:
  • java
阅读更多

package com.aliyun.blockqueue;

 

import java.util.LinkedList;

import java.util.List;

 

/**

 * 阻塞队列实现

 * Created with IntelliJ IDEA.

 * User: jack

 * Date: 14-6-16

 * Time: 下午3:38

 * To change this template use File | Settings | File Templates.

 */

public class SimpleBlockingQueue {

    private List blockQueue=new LinkedList(); //存放实例的队列

    private int limit=10;  //队列的上限

 

    public SimpleBlockingQueue(int limit){

        this.limit=limit;

    }

 

    /**

     * 向队列中添加数据

     * @param object

     */

    public synchronized void put(Object object){

        //判断队列是否已满

        while(this.limit==blockQueue.size()){

            try {

                wait();

                System.out.println("进入阻塞"+object);

            } catch (InterruptedException e) {

                e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.

            }

        }

        //判断队列是否还没有数据,如果没有唤醒所有线程

        if(blockQueue.size()==0){

              notifyAll();

            System.out.println("没有数据,唤醒所有线程");

        }

        //向队列中添加元素

        this.blockQueue.add(object);

        for(Object obj:this.blockQueue){

            System.out.println("元素"+obj+"已添加到队列中");

        }

 

    }

 

    /**

     * 获取队列中的数据

     */

    public synchronized Object take(){

         //判断队列是否有数据

        while(this.blockQueue.size()==0){

            try {

                wait();

                System.out.println("获取数据时进入阻塞状态");

            } catch (InterruptedException e) {

                e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.

            }

        }

        //判断队列是否已满

        if(this.limit==this.blockQueue.size()){

                notifyAll();

            System.out.println("获取数据时队列已满");

        }

        System.out.println(this.blockQueue.remove(0));

        return this.blockQueue.remove(0);

 

    }

}

 

package com.aliyun.blockqueue;

 

import org.junit.Test;

 

/**

 * 测试阻塞队列的实现

 * Created with IntelliJ IDEA.

 * User: jack

 * Date: 14-6-16

 * Time: 下午3:59

 * To change this template use File | Settings | File Templates.

 */

public class TestSimpleBlockingQueue {

 

    @Test

    public void testPut(){

        SimpleBlockingQueue simpleBlockingQueue=new SimpleBlockingQueue(5);

        for(int i=0;i<10;i++){

            simpleBlockingQueue.put("测试数据");

            if(i==7){

                simpleBlockingQueue.take();

            }

        }

 

    }

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics