多线程中的多生产多消费问题
程序员文章站
2022-05-02 17:06:07
...
1:if判断标记,只有一次,会导致不该运行的线程运行了。出现了数据错误的情况。
解析:也就是说,if判断就是之判断一次,会导致被唤醒的线程不会重新判断flag,这就会使消费者或者是生产者一直单消费单生产。(if会使同类线程多次执行)
while判断标记,解决了线程获取执行权后,是否要运行!
解析:也就是说,if判断就是之判断一次,会导致被唤醒的线程不会重新判断flag,这就会使消费者或者是生产者一直单消费单生产。(if会使同类线程多次执行)
while判断标记,解决了线程获取执行权后,是否要运行!
2:notify:只能唤醒一个线程,如果本方唤醒了本方,没有意义。而且while判断标记+notify会导致死锁。
notifyAll解决了本方线程一定会唤醒对方线程的问题。
notifyAll解决了本方线程一定会唤醒对方线程的问题。
解析:也就是说如果消费者线程全部wait,那么仅剩余的生产者线程thread-0如果只是唤醒了生产者线程thread-1,再次判断,会造成所有的线程都wait。(notify会使死锁)
class Resource
{
private String name;
private int count = 1;
private boolean flag = false;
public synchronized void set(String name)//
{
while(flag)
try{this.wait();}catch(InterruptedException e){}// t1 t0
this.name = name + count;//烤鸭1 烤鸭2 烤鸭3
count++;//2 3 4
System.out.println(Thread.currentThread().getName()+"...生产者..."+this.name);//生产烤鸭1 生产烤鸭2 生产烤鸭3
flag = true;
notifyAll();
}
public synchronized void out()// t3
{
while(!flag)
try{this.wait();}catch(InterruptedException e){} //t2 t3
System.out.println(Thread.currentThread().getName()+"...消费者........"+this.name);//消费烤鸭1
flag = false;
notifyAll();
}
}
class Producer implements Runnable
{
private Resource r;
Producer(Resource r)
{
this.r = r;
}
public void run()
{
while(true)
{
r.set("烤鸭");
}
}
}
class Consumer implements Runnable
{
private Resource r;
Consumer(Resource r)
{
this.r = r;
}
public void run()
{
while(true)
{
r.out();
}
}
}
class ProducerConsumerDemo
{
public static void main(String[] args)
{
Resource r = new Resource();
Producer pro = new Producer(r);
Consumer con = new Consumer(r);
Thread t0 = new Thread(pro);
Thread t1 = new Thread(pro);
Thread t2 = new Thread(con);
Thread t3 = new Thread(con);
t0.start();
t1.start();
t2.start();
t3.start();
}
}
上一篇: hive时间转换
下一篇: 爬虫实战-分布式微博爬取数据
推荐阅读
-
Excel单列或多列设置条件格式中的公式的引用问题实例详解
-
Ubuntu18.0 解决python虚拟环境中不同用户下或者python多版本环境中指定虚拟环境的使用问题
-
关于MyBatis 查询数据时属性中多对一的问题(多条数据对应一条数据)
-
EF更新多对多关系表中记录的时候,无法更新关系表的问题。
-
安装多版本的xcode中,cocoapods安装出现的问题
-
多线程:多生产者与多消费者(线程通信)、线程池
-
基于folly的AtomicIntrusiveLinkedList无锁队列进行简单封装的多生产多消费模型
-
讲讲小红书推广中因为笔记违规导致多篇限流的问题
-
详解在.net core中完美解决多租户分库分表的问题
-
springboot scheduled 解决多定时任务不执行的问题,多线程配置的几种方式