Java使用Condition实现精准唤醒线程详解

 更新时间:2023年02月28日 09:30:50   作者:周泽翔  
这篇文章主要为大家详细介绍了Java如何使用Condition实现精准唤醒线程效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起了解一下

Condition简要介绍

Condition是一个接口,创建Condition的实例不能直接new,Java为我们提供一个通过Lock类实例来调用newCondition()的方法来创建。Condition因素出Object监视器方法( wait , notify和notifyAll )到不同的对象,以得到具有多个等待集的每个对象,通过将它们与使用任意的组合的效果Lock个实现。 如果Lock替换了synchronized方法和语句的使用,则Condition将替换Object监视方法的使用。
条件(也称为条件队列或条件变量 )为一个线程提供暂停执行(“等待”)的手段,直到另一个线程通知某个状态条件现在可能为真。 由于对此共享状态信息的访问发生在不同的线程中,因此必须对其进行保护,因此某种形式的锁定与该条件相关联。 等待条件提供的关键属性是它以原子方式释放关联的锁并挂起当前线程,就像Object.wait一样。

Condition里的主要方法

使用Condition的Demo

例子1

package testJUC;

import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

public class TestCondition {
    public static void main(String[] args) {
        Product3 product = new Product3();
        new Thread(()->{
            for (int i = 0; i < 5; i++)
                new Producer(product).getProduct();

        },"工厂").start();

        new Thread(()->{
            for (int i = 0; i < 5; i++)
                new Consumer(product).saleProduct();
        },"学生").start();
    }
}

class Product3 {
    private Lock lock = new ReentrantLock();
    private Condition condition1 = lock.newCondition();
    private Condition condition2 = lock.newCondition();
    private int flag = 1;//标识符

    public void getProduct() {
        //加锁
        lock.lock();
        try {
        //使用while循环,可以有效避免线程虚假唤醒
            while (flag != 1) {
                condition1.await();
            }
            flag = 2;
            //唤醒saleProduct
            condition2.signal();
            System.out.println(Thread.currentThread().getName() + "生产一个产品");
        } catch (InterruptedException e) {
            e.printStackTrace();
        } finally {
            //解锁
            lock.unlock();
        }
    }



    public void saleProduct() {
        lock.lock();
        try {
            while (flag != 2) {
                condition2.await();
            }
            flag = 1;
            //唤醒getProduct
            condition1.signal();
            System.out.println(Thread.currentThread().getName()+"消费了一个产品");
        }catch (InterruptedException e) {
            e.printStackTrace();
        }finally {
            lock.unlock();
        }
    }
}
//实体类
class Producer{
    private Product3 product = null;
    public Producer(Product3 product) {
        this.product = product;
    }
    public void getProduct(){
        product.getProduct();
    }
}

class Consumer{
    private Product3 product = null;

    public Consumer(Product3 product) {
        this.product = product;
    }

    public void saleProduct(){
        product.saleProduct();
    }
}

结果

例子2

package testJUC;

import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

public class TestCondition {
    public static void main(String[] args) {
        Print print = new Print();
        new Thread(() -> {
            for (int i = 0; i < 5; i++)
                print.printA();
        }).start();
        new Thread(() -> {
            for (int i = 0; i < 5; i++)
                print.printB();
        }).start();
        new Thread(() -> {
            for (int i = 0; i < 5; i++)
                print.printC();
        }).start();

    }
}


class Print {
    private Lock lock = new ReentrantLock();
    private Condition condition1 = lock.newCondition();
    private Condition condition2 = lock.newCondition();
    private Condition condition3 = lock.newCondition();
    private int number = 1;

    //输出A的方法
    public void printA() {
        //加锁
        lock.lock();
        try {
            //使用while循环,可以有效避免线程虚假唤醒
            while (number != 1) {
                condition1.await();
            }
            number = 2;
            //唤醒输出B的方法
            condition2.signal();
            System.out.println("AAA");
        } catch (InterruptedException e) {
            e.printStackTrace();
        } finally {
            //解锁
            lock.unlock();
        }

    }

    //输出B的方法
    public void printB() {
        //加锁
        lock.lock();
        try {
            while (number != 2) {
                condition2.await();
            }
            System.out.println("BBB");
            number = 3;
            //唤醒C
            condition3.signal();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } finally {
            //唤醒输出C的方法
            lock.unlock();
        }
    }

    //输出C的方法
    public void printC() {
        //加锁
        lock.lock();
        try {
            while (number != 3) {
                condition3.await();
            }
            System.out.println("CCC");
            number = 1;
            //唤醒输出A的方法
            condition1.signal();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } finally {
            //解锁
            lock.unlock();
        }
    }
}

结果2

到此这篇关于Java使用Condition实现精准唤醒线程详解的文章就介绍到这了,更多相关Java Condition精准唤醒线程内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Java中try catch的使用和如何抛出异常问题

    Java中try catch的使用和如何抛出异常问题

    这篇文章主要介绍了Java中try catch的使用和如何抛出异常问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2023-12-12
  • java中double强制转换int引发的OOM问题记录

    java中double强制转换int引发的OOM问题记录

    这篇文章主要介绍了java中double强制转换int引发的OOM问题记录,本文给大家分享问题排查过程,感兴趣的朋友跟随小编一起看看吧
    2024-10-10
  • java随机生成8位数授权码的实例

    java随机生成8位数授权码的实例

    下面小编就为大家带来一篇java随机生成8位数授权码的实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-02-02
  • java比较器comparator使用示例分享

    java比较器comparator使用示例分享

    这篇文章主要介绍了java比较器comparator使用示例,需要的朋友可以参考下
    2014-03-03
  • 轻松掌握Java备忘录模式

    轻松掌握Java备忘录模式

    这篇文章主要帮助大家轻松掌握Java备忘录模式,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-09-09
  • RabbitMQ消息的延迟队列详解

    RabbitMQ消息的延迟队列详解

    这篇文章主要介绍了RabbitMQ消息的延迟队列,延迟队列也就是死信交换机,有些队列的消息成为死信后,消息中间件可以将其从当前队列发送到另一个队列中,这个队列就是死信队列,感兴趣的同学可以参考下文
    2024-02-02
  • SpringBoot+WebSocket实现即时通讯功能(Spring方式)

    SpringBoot+WebSocket实现即时通讯功能(Spring方式)

    今天给大家分享一个SpringBoot+WebSocket实现即时通讯功能(Spring方式),WebSocket是一种在单个TCP连接上进行全双工通信的协议,文章通过代码示例给大家介绍的非常详细,需要的朋友可以参考下
    2023-10-10
  • JAVA异常和自定义异常处理方式

    JAVA异常和自定义异常处理方式

    这篇文章主要介绍了JAVA异常和自定义异常处理方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2023-09-09
  • SpringBoot 枚举类型的自动转换的实现

    SpringBoot 枚举类型的自动转换的实现

    一般我们在数据库都会定义数值型的枚举常量,不管是序列化还是反序列化都是需要我们手动去转换成枚举类型的,本文主要介绍了Spring Boot 枚举类型的自动转换,感兴趣的可以了解一下
    2022-03-03
  • Springboot集成restTemplate过程详解

    Springboot集成restTemplate过程详解

    这篇文章主要介绍了Springboot集成restTemplate过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-04-04

最新评论