开发者社区> 问答> 正文

Java如何使用BlockingQueue模拟生产者与消费者?

Java如何使用BlockingQueue模拟生产者与消费者?

展开
收起
小天使爱美 2020-04-12 22:12:42 3965 0
1 条回答
写回答
取消 提交回答
  • " package com.stardust.study.demo.se.multithread;

    import org.apache.commons.lang3.StringUtils;

    import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicInteger;

    public class ProductDemo { public static void main(String[] args) { BlockingQueue blockingQueue = new LinkedBlockingQueue<>(3); ProductThread productThread = new ProductThread(blockingQueue); ConsumerThread consumerThread = new ConsumerThread(blockingQueue); Thread p = new Thread(productThread); Thread c = new Thread(consumerThread); p.start(); c.start(); try { Thread.sleep(2 * 1000); productThread.stop(); } catch (InterruptedException e) { e.printStackTrace(); } } }

    class ProductThread implements Runnable{ private BlockingQueue blockingQueue; private AtomicInteger atomicInteger = new AtomicInteger(); private volatile boolean flag = true;

    ProductThread(BlockingQueue<String> blockingQueue){
        this.blockingQueue = blockingQueue;
    }
    
    @Override
    public void run() {
        System.out.println(""线程:"" + Thread.currentThread().getName() + "",生产者开始执行"");
        while (flag){
            String count = atomicInteger.incrementAndGet() + """";
            try {
                boolean offer = blockingQueue.offer(count, 2, TimeUnit.SECONDS);
                if(offer) {
                    System.out.println(""线程:"" + Thread.currentThread().getName() + "",生产者添加元素成功"");
                }else {
                    System.out.println(""线程:"" + Thread.currentThread().getName() + "",生产者添加元素失败"");
                }
            } catch (Exception e) {
    
            }
        }
        System.out.println(""线程:"" + Thread.currentThread().getName() + "",生产者结束执行"");
    }
    public void stop(){
        this.flag = false;
    }
    

    }

    class ConsumerThread implements Runnable{ private BlockingQueue blockingQueue; private volatile boolean flag = true;

    ConsumerThread(BlockingQueue<String> blockingQueue){
        this.blockingQueue = blockingQueue;
    }
    
    @Override
    public void run() {
        System.out.println(""线程:"" + Thread.currentThread().getName() + "",消费者开始执行"");
        while (flag){
            try {
                String count = blockingQueue.poll(2, TimeUnit.SECONDS);
                if(StringUtils.isBlank(count)) {
                    this.flag = false;
                    System.out.println(""线程:"" + Thread.currentThread().getName() + "",消费者超过两秒没有获取消息"");
                    return;
                }
                System.out.println(""线程:"" + Thread.currentThread().getName() + "",消费者成功获取消息:"" + count);
            } catch (Exception e) {
    
            }
        }
    }
    

    }"

    2020-04-12 22:14:32
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载