利用等待通知机制实现一个阻塞队列,长度有限,使用多个线程进行数据的添加和取出,当队列为空或者已满时都能正确地阻塞线程,

添加 取出数据方法:

package java基础.Test718;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.LinkedList;
import java.util.Queue;
import java.util.concurrent.TimeUnit;

public class WaitNotify {
   private Queue<Integer> queue;
   private int capacity;

    public WaitNotify(int capacity) {
        this.queue = new LinkedList<>();
        this.capacity = capacity;
    }
    public synchronized void enqueue(Integer item) throws InterruptedException {
        while (queue.size()==capacity){
            System.out.println("插入数据阻塞队列满了");
            wait();
        }
        queue.add(item);
        System.out.println("插入成功"+item);
        notifyAll();
    }
    public synchronized Integer dequeue() throws InterruptedException {
        while (queue.isEmpty()){
            System.out.println("取数据阻塞队列满了");
            wait ();
        }
        Integer item = queue.poll();
        System.out.println("成功取到数据"+item);
        notifyAll();
        return item;
    }


}

这两个方法其实很简单,就是先定一个队列和一个整型数据 capacity(用于存储队列的长度),然后等待通知机制,分别写两个加锁的方法一个添加,一个取出,如果调用添加方法的线程获取到锁,会先判断当前阻塞队列是否满了,满了就进入等待队列,等待被唤醒,如果不满,就添加数据然后唤醒所有出于等待队列的线程(使那些因为队列为空无法取得数据而进入等待状态的线程能够从新加入争夺锁的状态),同理取出方法也一样,只不过他的判断语句是判断是否为空.

测试代码:

package java基础.Test718;

public class Test {
    public static void main(String[] args) {
        WaitNotify waitNotify = new WaitNotify(5);
        Thread thread1 = new Thread(()->{
            try {
                for (int i=0;i<10;i++){
                    waitNotify.enqueue(i);
                    System.out.println("线程1添加"+i);
                    Thread.sleep(100);
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });
        Thread thread2 = new Thread(()->{
            try {
                for (int i=0;i<10;i++){
                    waitNotify.enqueue(i);
                    System.out.println("线程2添加"+i);
                    Thread.sleep(100);
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });
        Thread thread3 = new Thread(()->{
            try {
                for (int i=0;i<10;i++){
                    int x = waitNotify.dequeue();
                    System.out.println("线程3取出"+x);

                    Thread.sleep(1000);
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });
        Thread thread4 = new Thread(()->{
            try {
                for (int i=0;i<10;i++){
                    int x = waitNotify.dequeue();
                    System.out.println("线程4取出"+x);

                    Thread.sleep(900);
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });
        thread1.start();
        thread2.start();
        thread3.start();
        thread4.start();
        try {
            thread1.join();
            thread2.join();
            thread3.join();
            thread4.join();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("执行完毕");


    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值