码迷,mamicode.com
首页 > 其他好文 > 详细

生产者和消费者模式

时间:2020-04-16 10:24:55      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:set   sys   while   cot   tac   rgs   对象锁   read   结果   

1.sleep()是Thread类的方法;而wait(),notify(),notifyAll()是Object类中定义的方法;
2.Thread.sleep和Object.wait都会暂停当前的线程,Thread.sleep不会造成当前锁行为的变化,如果当前线程有锁,调用之后并不会释放锁;而Object.wait会释放当前对象锁.
技术图片

代码实现:

package ProducerCon;

import java.util.ArrayList;
import java.util.List;

public class ProducerCoThread {
public static void main(String[] args) {
    List list = new ArrayList<>();
    Thread t1 = new Thread(new Producer(list));
    Thread t2 = new Thread(new Consumer(list));
    t1.setName("生产者线程");
    t2.setName("消费者线程");
    t1.start();
    t2.start();
}
}

class Producer implements Runnable{
    private List list;
    public Producer(List list) {
        super();
        this.list = list;
    }
    public void run() {
        while(true) {
            synchronized(list) {
                if(list.size() > 0) {
                    try {
                        list.wait();    //当前线程进入等待,并释放锁.此时下面执行不了
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                Object obj = new Object();
                list.add(obj);
                System.out.println(Thread.currentThread().getName()+"---->"+obj);
                list.notify();
            }
        }
    }
}

class Consumer implements Runnable{
    private List list;
    public Consumer(List list) {
        super();
        this.list = list;
    }
    public void run() {
        while(true) {
            synchronized(list) {
                if(list.size() == 0) {
                    try {
                        list.wait();     //当前线程进入等待,并释放锁.此时下面执行不了
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            Object obj = list.remove(0);
            System.out.println(Thread.currentThread().getName()+ "---->"+obj);
            list.notify();
            }
        }
    }
}

运行结果:
技术图片

生产者和消费者模式

标签:set   sys   while   cot   tac   rgs   对象锁   read   结果   

原文地址:https://blog.51cto.com/14472348/2487692

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!