阻塞队列(ArrayBlockingQueue)

package demo;

import java.util.*;
import java.util.concurrent.*;
/**
 * 这个类是用来测试阻塞队列的
 * 当试图向一个队列添加元素,但是队列已经满时,或是想把一个元素移出队列而队列为空时
 * 阻塞队列就会导致线程阻塞。
 * 
 * @author king_wang
 *
 */
public class BlockQueueTest {
    private static  int queueSize=10;
    public static void main(String[] args) {

        BlockingQueue<String> queue = new ArrayBlockingQueue<String>(queueSize);

        Runnable r1 = new PullThread(queue);
        Thread t1 = new Thread(r1);
        Runnable r2 = new OfferThread(queue);
        Thread t2 = new Thread(r2);
        System.out.println("开始启动线程");
        t1.start();
        t2.start();
        System.out.println("结束线程");

    }

}

class PullThread<InterruptException> implements Runnable {
    public BlockingQueue<String> queue;

    public PullThread(BlockingQueue<String> queue) {
        this.queue = queue;
    }
    public void run(){

        while(true)
             {
                try {
                    queue.take();
                 //queue.take()移除并返回队列头部的元素     如果队列为空,则阻塞  
                    System.out.println("已经移走一个元素,一共"+queue.size());
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
     }

}

class OfferThread<InterruptException> implements Runnable {
    public BlockingQueue<String> queue;

    public OfferThread(BlockingQueue<String> queue) {
        this.queue = queue;
    }

    public void run() {
            while(true)
            {
                try{
                //queue.put() 添加一个元素 如果队列满,则阻塞.
                queue.put("c++");
                System.out.println("已插入一个元素,一共有"+queue.size());
                }catch(InterruptedException e ){
                       e.printStackTrace();
                }


            }
        }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值