用synchronized实现一个简单的生产者和消费者

该代码示例展示了如何使用Java的wait和notify方法解决生产者消费者问题。一个Queue类作为共享资源,生产者线程生成随机数并放入队列,消费者线程从队列中取出并消费元素。当队列满或空时,线程会进行等待和通知操作。
摘要由CSDN通过智能技术生成
package com.tuling.learnjuc.sync.xiaoshanshan;

import java.util.LinkedList;
import java.util.Random;

public class ProducerAndConsumer {

    public static void main(String[] args) {
        Queue queue =new Queue(5);
        new Thread(new Producer(queue)).start();
        new Thread(new Consumer(queue)).start();
        new Thread(new Consumer(queue)).start();

        new Thread(new Consumer(queue)).start();
        new Thread(new Consumer(queue)).start();
        new Thread(new Consumer(queue)).start();

    }


}

class Queue{

    private Object[] array;

    private int currentSize ;

    private int putIndex ;

    private int takeIndex ;

    private static Object object = new Object();

    public Queue(int capacity) {
        array = new Object[capacity];
        currentSize = 0;
    }

    // 放数据
    public void put(Object o){

        synchronized (object){
            while(currentSize== array.length){
                try {
                    object.wait();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            array[putIndex] = o ;

            if((putIndex+1)==array.length){
                putIndex = 0;
            }else{
                putIndex = putIndex+1;
            }
            currentSize ++ ;
            System.out.println(Thread.currentThread().getName() + "放入了"+o + "," + currentSize);
            if(currentSize == array.length){
                object.notifyAll();
            }
        }

    }

    // 取数据
    public Object take(){
        synchronized (object){
            while(currentSize ==0){
                try {
                    object.wait();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            Object ret = array[takeIndex];
            if(null==ret){
                System.out.println("没有取到对象");
                return null;
            }

            array[takeIndex] = null ;
            if((takeIndex+1)==array.length){
                takeIndex =0;
            }else {
                takeIndex = takeIndex+1 ;
            }
            currentSize -- ;
            System.out.println(Thread.currentThread().getName() + "取出了"+ret + "," + currentSize);
            if(currentSize == 0){
                object.notifyAll();
            }
            return ret;
        }
    }
}
class Producer implements Runnable{
    Queue queue ;

    public Producer(Queue queue) {
        this.queue = queue;
    }

    @Override
    public void run() {

        while(true){
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            queue.put(new Random().nextInt(1000));
        }
    }
}

class Consumer implements Runnable{

    Queue queue ;


    public Consumer(Queue queue) {
        this.queue = queue;
    }



    @Override
    public void run() {
        while(true){
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            queue.take();
        }
    }
}

注意:使用wait和notify实现等待通知的范式:

等待方遵循如下原则。

1)获取对象的锁。

2)如果条件不满足,那么调用对象的wait()方法,被通知后仍要检查条件。

3)条件满足则执行对应的逻辑

synchronized (对象){
      while(条件不满足){
          对象.wait();
      }
      对应的处理逻辑;
}

通知方遵循如下原则。

1)获得对象的锁。

2)改变条件。

3)通知所有等待在对象上的线程。

 synchronized (对象){
         改变条件;
         对象.notifyAll();
}

Java中,可以使用`synchronized`关键字实现管程来解决生产者消费者问题。下面是实现的步骤: 1. 定义一个缓冲区,用来存储生产者生产的数据和消费者消费的数据。 2. 定义一个计数器,用来记录缓冲区中的数据个数。 3. 定义生产者消费者线程,分别负责生产数据和消费数据。 4. 在生产者消费者线程中,使用`synchronized`关键字来锁住缓冲区,确保线程安全。 5. 生产者在生产数据之前判断缓冲区是否已满,如果已满则等待;如果未满则将数据添加到缓冲区中,并将计数器加一。 6. 消费者在消费数据之前判断缓冲区是否为空,如果为空则等待;如果不为空则从缓冲区中取出数据,并将计数器减一。 下面是一个使用`synchronized`实现生产者消费者问题的示例代码: ``` public class ProducerConsumer { private static final int BUFFER_SIZE = 10; private static int count = 0; private static int[] buffer = new int[BUFFER_SIZE]; public static void main(String[] args) { Thread producer = new Thread(new Producer()); Thread consumer = new Thread(new Consumer()); producer.start(); consumer.start(); } static class Producer implements Runnable { public void run() { while (true) { synchronized (buffer) { if (count == BUFFER_SIZE) { try { buffer.wait(); } catch (InterruptedException e) { e.printStackTrace(); } } buffer[count++] = 1; System.out.println("Producer produced, count=" + count); buffer.notify(); } } } } static class Consumer implements Runnable { public void run() { while (true) { synchronized (buffer) { if (count == 0) { try { buffer.wait(); } catch (InterruptedException e) { e.printStackTrace(); } } buffer[--count] = 0; System.out.println("Consumer consumed, count=" + count); buffer.notify(); } } } } } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值