Java JDK 中提供的线程通信方式

JDK 中提供的线程通信方式

1、wait/notify方式

   wait/notify要求在同步关键字中使用,避免了死锁现象,但是如果不先调用wait,而先调用notify的情况下,容易导致线程永久挂起
package com.milla.study.netbase.expert.concurrent;

import java.util.Objects;
import java.util.concurrent.locks.LockSupport;

/**
 * @Package: com.milla.study.netbase.expert.concurrent
 * @Description: <线程通信类>
 * @Author: MILLA
 * @CreateDate: 2020/4/21 14:29
 * @UpdateUser: MILLA
 * @UpdateDate: 2020/4/21 14:29
 * @UpdateRemark: <>
 * @Version: 1.0
 */
public class ThreadCommunicationTest {
    private Object product;

    public static void main(String[] args) throws InterruptedException {
        ThreadCommunicationTest test = new ThreadCommunicationTest();

        test.waitAndNotifyAll();//正常情况
        test.waitAndNotifyAllWaitingByOrder();//顺序问题导致一直阻塞
     }

    private void waitAndNotifyAllWaitingByOrder() throws InterruptedException {
        Thread consumer = new Thread(() -> {

            if (Objects.isNull(product)) {
                System.out.println("没有产品可以消费,进行等待...");
                try {
                    Thread.sleep(5000L);//外接因素导致线程先被唤醒后才进行等待
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                synchronized (this) {
                    try {
                        this.wait();//该方法会执行后会失去锁,被唤醒后需从该语句的后一个语句开始执行
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                System.out.println("继续消费...........");
            }
        });
        consumer.start();
        System.out.println("启动消费者线程...");
        Thread.sleep(1000L);
        synchronized (this) {
            this.notifyAll();
            System.out.println("生产出产品,唤醒所有等待线程...");
        }
    }

    private void waitAndNotifyAll() throws InterruptedException {
        Thread consumer = new Thread(() -> {
            synchronized (this) {
                while (Objects.isNull(product)) {
                    System.out.println("没有产品可以消费,进行等待...");
                    try {
                        this.wait();//被唤醒后需从该语句的后一个语句开始执行
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                System.out.println("继续消费...........");
            }
        });
        consumer.start();
        System.out.println("启动消费者线程...");
        Thread.sleep(1000L);
        synchronized (this) {
//            product = new Object();//当生产者不被创建的时候时候,唤醒线程,线程会出现伪唤醒的情况。所以在使用wait的时候应采用while的判断模式[JDK推荐方式],而不是if
            this.notifyAll();
            System.out.println("生产出产品,唤醒所有等待线程...");
        }
    }
}

执行后,如果不能成功运行结束,可以通过两种方式去查看线程的状态:

1、jstack命令

//在黑窗口中执行jps命令,找到java进程的Pid
jsp -l // 获取所有的Java程序信息

23408 org/netbeans/Main
18132 org.jetbrains.jps.cmdline.Launcher
20804 sun.tools.jps.Jps
22692 org.jetbrains.jps.cmdline.Launcher
4712 com.milla.study.netbase.expert.concurrent.ThreadCommunicationTest//确定该进程pid
4728 org.jetbrains.jps.cmdline.Launcher
9016 org.jetbrains.idea.maven.server.RemoteMavenServer
6108

//继续执行jstack -jdk自带的命令

jstack -l 4712

在输出中没有找到dead lock的情况下,一般就是没有死锁,如果看到 waiting for lock的话,一般是因为一个线程持有锁,然后是在阻塞中,且不释放锁,而另一个线程也获取不到这个锁,就一直阻塞

2.通过JavaVisualVM [JDK中自带的可视化工具]

查看线程的Dump,基本信息和jstack一样

3、使用jconsole工具 [jdk提供的可视化工具]

指定需要监测的进程,可分本地和远程进程

结果显示,并没有产生死锁,只是线程一直处于阻塞状态

2、通过park/unpark实现通信

       park/unpark没有顺序要求,但park并不会释放锁,在同步代码快中依然有永久阻塞的问题

package com.milla.study.netbase.expert.concurrent;

import java.util.Objects;
import java.util.concurrent.locks.LockSupport;

/**
 * @Package: com.milla.study.netbase.expert.concurrent
 * @Description: <线程通信类>
 * @Author: MILLA
 * @CreateDate: 2020/4/21 14:29
 * @UpdateUser: MILLA
 * @UpdateDate: 2020/4/21 14:29
 * @UpdateRemark: <>
 * @Version: 1.0
 */
public class ThreadCommunicationTest {
    private Object product;

    public static void main(String[] args) throws InterruptedException {
        ThreadCommunicationTest test = new ThreadCommunicationTest();
 
        test.parkAndUnPark();//正常情况
        test.parkAndUnParkWaitingBySynchronized();//顺序问题导致一直阻塞
    }

    private void parkAndUnParkWaitingBySynchronized() throws InterruptedException {
        Thread consumer = new Thread(() -> {
            System.out.println("开始消费....");
            while (Objects.isNull(product)) {
                System.out.println("没有许可,阻塞中....");
                synchronized (this) {//同步代码块,park方法不会释放锁,所以,一直在阻塞状态
                    LockSupport.park();//许可是不可用的,将线程阻塞
                }
            }
            System.out.println("继续消费....");
        });
        consumer.start();
        Thread.sleep(3000L);
        product = new Object();

        synchronized (this) {
            LockSupport.unpark(consumer);
        }
        System.out.println("发放许可,使线程继续执行....");
    }

    private void parkAndUnPark() throws InterruptedException {
        Thread consumer = new Thread(() -> {
            System.out.println("开始消费....");
            while (Objects.isNull(product)) {
                System.out.println("没有许可,阻塞中....");
                LockSupport.park();//许可是不可用的,将线程阻塞
            }
            System.out.println("继续消费....");
        });
        consumer.start();
        Thread.sleep(3000L);
        product = new Object();

        LockSupport.unpark(consumer);//发送许可,使线程能继续执行
        System.out.println("发放许可,使线程继续执行....");
    }
}

3、已经废弃的suspend/resume

        对调用有顺序要求,开发中容易出现死锁现象,也容易永久挂起,已经被废弃

package com.milla.study.netbase.expert.concurrent;

import java.util.Objects;
import java.util.concurrent.locks.LockSupport;

/**
 * @Package: com.milla.study.netbase.expert.concurrent
 * @Description: <线程通信类>
 * @Author: MILLA
 * @CreateDate: 2020/4/21 14:29
 * @UpdateUser: MILLA
 * @UpdateDate: 2020/4/21 14:29
 * @UpdateRemark: <>
 * @Version: 1.0
 */
public class ThreadCommunicationTest {
    private Object product;

    public static void main(String[] args) throws InterruptedException {
        ThreadCommunicationTest test = new ThreadCommunicationTest();

        test.oldJdkCommunication();//正常情况
        test.oldJdkCommunicationWaitingBySynchronized();//因为同步块导致永久阻塞
        test.oldJdkCommunicationWaitingByOrder();//唤醒顺序问题导致永久挂起
    }


    //方法调用顺序错误导致死锁
    private void oldJdkCommunicationWaitingByOrder() throws InterruptedException {
        Thread producer = new Thread(() -> {

            if (Objects.isNull(product)) {
                System.out.println("如果产品是空的话,挂起当前线程[需要获取到锁],进入等等");
                synchronized (this) {
                    try {
                        Thread.sleep(3000L);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    Thread.currentThread().suspend();//挂起线程
                }
            }
            System.out.println("继续消费");
        }, "生产者");

        producer.start();
        Thread.sleep(1000L);
        product = new Object();
        producer.resume();//恢复消费线程,在线程被挂起之前唤醒线程,线程挂起之后就一直处于阻塞状态
        System.out.println("重新唤起线程进行消费");
        Thread.sleep(3001L);
        producer.resume();//继续唤醒,此时如果在线程被挂起之后继续唤醒线程,还是可以唤醒成功的()
        System.out.println("继续唤醒...");
    }

    //同步代码块会死锁
    private void oldJdkCommunicationWaitingBySynchronized() throws InterruptedException {
        Thread producer = new Thread(() -> {

            if (Objects.isNull(product)) {
                System.out.println("如果产品是空的话,挂起当前线程[需要获取到锁],进入等等");
                synchronized (this) {
                    Thread.currentThread().suspend();//挂起线程
                }
            }
            System.out.println("继续消费");
        }, "生产者");

        producer.start();
        Thread.sleep(3000L);
        product = new Object();
        synchronized (this) {
            producer.resume();//恢复消费线程
        }
        System.out.println("重新唤起线程进行消费");
    }

    private void oldJdkCommunication() throws InterruptedException {
        Thread producer = new Thread(() -> {

            if (Objects.isNull(product)) {
                System.out.println("如果产品是空的话,挂起当前线程[需要获取到锁],进入等等");
                synchronized (this) {
                    Thread.currentThread().suspend();//挂起线程
                }
            }
            System.out.println("继续消费");
        }, "生产者");

        producer.start();
        Thread.sleep(3000L);
        product = new Object();
        producer.resume();//恢复消费线程
        System.out.println("重新唤起线程进行消费");

    }
}

注意点:在判断的时候JDK中推荐采用while(conditions){wait()}.的方式,不建议直接使用if判断,因为线程可能不是notify、notifyAll、 unpark等api的调用而唤醒的,可能是更底层的原因唤醒的,应注意伪唤醒的问题。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值