• Synchronized 与 Lock 生产者和消费者问题



    Synchronized 与 Lock 生产者和消费者问题

    一、生产者和消费者问题

    • Synchronized版 wait notify
    • juc版Lock与Condition await signal
      在这里插入图片描述

    二、Synchronized版

    1、代码案例(2个线程)

    package com.sgz.pc;
    
    /**
     * 日期:2022/8/28 - 11:59
     * 需求:
     * 线程之间的通信问题:生产者和消费者问题!等待唤醒,通知唤醒
     * 线程交替执行   A   B   操作同一个变量 num = 0
     * A num + 1
     * B num - 1
     */
    public class Demo01 {
    
        public static void main(String[] args) {
            Data data = new Data();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.increment();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "A").start();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.decrement();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "B").start();
        }
    }
    
    // 判断等待,业务,通知
    class Data {    // 数字   资源类
    
        private int number = 0;
    
        // +1 只要是并发就有锁
        public synchronized void increment() throws InterruptedException {
            if (number != 0) {  // 0    number不等于0就等待,number等于0就干活
                // 等待
                this.wait();
            }
            number++;
            System.out.println(Thread.currentThread().getName() + "=>" + number);
            // 通知其它线程,我+1完毕了
            this.notifyAll();
        }
    
        // -1
        public synchronized void decrement() throws InterruptedException {
            if (number == 0) {  // 1    number等于0就等待,number不等于0就干活
                // 等待
                this.wait();
            }
            number--;
            System.out.println(Thread.currentThread().getName() + "=>" + number);
            // 通知其它线程,我-1完毕了
            this.notifyAll();
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67

    2、代码案例(4个线程)if 改为 while 判断

    • 以上使用 if 存在问题, A,B,C,D 4个线程会存在虚假唤醒,官方文档中写的 java.lang.Object 下的 wait
      在这里插入图片描述
    package com.sgz.pc;
    
    /**
     * 日期:2022/8/28 - 11:59
     * 需求:
     * 线程之间的通信问题:生产者和消费者问题!等待唤醒,通知唤醒
     * 线程交替执行   A   B   操作同一个变量 num = 0
     * A num + 1
     * B num - 1
     */
    public class Demo01 {
    
        public static void main(String[] args) {
            Data data = new Data();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.increment();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "A").start();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.decrement();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "B").start();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.increment();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "C").start();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.decrement();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "D").start();
    
        }
    }
    
    // 判断等待,业务,通知
    class Data {    // 数字   资源类
    
        private int number = 0;
    
        // +1 只要是并发就有锁
        public synchronized void increment() throws InterruptedException {
            while (number != 0) {  // 0    number不等于0就等待,number等于0就干活
                // 等待
                this.wait();
            }
            number++;
            System.out.println(Thread.currentThread().getName() + "=>" + number);
            // 通知其它线程,我+1完毕了
            this.notifyAll();
        }
    
        // -1
        public synchronized void decrement() throws InterruptedException {
            while (number == 0) {  // 1    number等于0就等待,number不等于0就干活
                // 等待
                this.wait();
            }
            number--;
            System.out.println(Thread.currentThread().getName() + "=>" + number);
            // 通知其它线程,我-1完毕了
            this.notifyAll();
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88

    三、JUC

    1、代码案例(4个线程)

    package com.sgz.pc;
    
    import java.util.concurrent.locks.Condition;
    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * 日期:2022/8/28 - 11:59
     * 需求:
     * 线程之间的通信问题:生产者和消费者问题!等待唤醒,通知唤醒
     * 线程交替执行   A   B   操作同一个变量 num = 0
     * A num + 1
     * B num - 1
     */
    public class Demo02 {
    
        public static void main(String[] args) {
            Data data = new Data();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.increment();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "A").start();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.decrement();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "B").start();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.increment();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "C").start();
    
            new Thread(() -> {
                for (int i = 0; i < 10; i++) {
                    try {
                        data.decrement();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }, "D").start();
    
        }
    }
    
    // 判断等待,业务,通知
    class Data {    // 数字   资源类
    
        private int number = 0;
    
        Lock lock = new ReentrantLock();
        Condition condition = lock.newCondition();
        // condition.await();  // 等待
        // condition.signalAll();  // 唤醒全部
    
        // +1 只要是并发就有锁
        public void increment() throws InterruptedException {
            lock.lock();
            try {
                // 业务代码
                while (number != 0) {  // 0    number不等于0就等待,number等于0就干活
                    // 等待
                    condition.await();
                }
                number++;
                System.out.println(Thread.currentThread().getName() + "=>" + number);
                // 通知其它线程,我+1完毕了
                condition.signalAll();
            } catch (Exception e) {
                e.printStackTrace();
            }finally {
                lock.unlock();
            }
        }
    
        // -1
        public void decrement() throws InterruptedException {
    
            lock.lock();
            try {
                while (number == 0) {  // 1    number等于0就等待,number不等于0就干活
                    // 等待
                    condition.await();
                }
                number--;
                System.out.println(Thread.currentThread().getName() + "=>" + number);
                // 通知其它线程,我-1完毕了
                condition.signalAll();
            }catch (Exception e){
                e.printStackTrace();
            }finally {
                lock.unlock();
            }
    
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
  • 相关阅读:
    const使用
    【安装文档】TRex流量分析仪保姆级安装指南--基于VMware虚拟机(ubantu18.04@Intel 82545EM)
    【c#】Thread多线程项目练习Demo之---摇奖机
    IEEE期刊的投稿模板下载
    责任链模式(Chain of Responsibility)
    正规现货黄金中的MACD技术
    怎么把图片转换成表格?分享三个简单方法给你
    怎么获取开源的商城源码
    统一响应,自定义校验器,自定义异常,统一异常处理器
    Log4j日志框架多种日志级别
  • 原文地址:https://blog.csdn.net/s17856147699/article/details/126596967