欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

深入理解java线程通信

程序员文章站 2023-11-12 20:33:22
前言 开发中不免会遇到需要所有子线程执行完毕通知主线程处理某些逻辑的场景。 或者是线程 a 在执行到某个条件通知线程 b 执行某个操作。 可以通过以下几种方式实现...

前言

开发中不免会遇到需要所有子线程执行完毕通知主线程处理某些逻辑的场景。

或者是线程 a 在执行到某个条件通知线程 b 执行某个操作。

可以通过以下几种方式实现:

等待通知机制

等待通知模式是 java 中比较经典的线程通信方式。
两个线程通过对同一对象调用等待 wait() 和通知 notify() 方法来进行通讯。

如两个线程交替打印奇偶数:

public class twothreadwaitnotify {
private int start = 1;
private boolean flag = false;
public static void main(string[] args) {
twothreadwaitnotify twothread = new twothreadwaitnotify();
thread t1 = new thread(new ounum(twothread));
t1.setname("a");
thread t2 = new thread(new jinum(twothread));
t2.setname("b");
t1.start();
t2.start();
}
/**
* 偶数线程
*/
public static class ounum implements runnable {
private twothreadwaitnotify number;
public ounum(twothreadwaitnotify number) {
this.number = number;
}
@override
public void run() {
while (number.start <= 100) {
synchronized (twothreadwaitnotify.class) {
system.out.println("偶数线程抢到锁了");
if (number.flag) {
system.out.println(thread.currentthread().getname() + "+-+偶数" + number.start);
number.start++;
number.flag = false;
twothreadwaitnotify.class.notify();
}else {
try {
twothreadwaitnotify.class.wait();
} catch (interruptedexception e) {
e.printstacktrace();
}
}
}
}
}
}
/**
* 奇数线程
*/
public static class jinum implements runnable {
private twothreadwaitnotify number;
public jinum(twothreadwaitnotify number) {
this.number = number;
}
@override
public void run() {
while (number.start <= 100) {
synchronized (twothreadwaitnotify.class) {
system.out.println("奇数线程抢到锁了");
if (!number.flag) {
system.out.println(thread.currentthread().getname() + "+-+奇数" + number.start);
number.start++;
number.flag = true;
twothreadwaitnotify.class.notify();
}else {
try {
twothreadwaitnotify.class.wait();
} catch (interruptedexception e) {
e.printstacktrace();
}
}
}
}
}
}
}


输出结果:

t2+-+奇数93
t1+-+偶数94
t2+-+奇数95
t1+-+偶数96
t2+-+奇数97
t1+-+偶数98
t2+-+奇数99
t1+-+偶数100

这里的线程 a 和线程 b 都对同一个对象 twothreadwaitnotify.class 获取锁,a 线程调用了同步对象的 wait() 方法释放了锁并进入 waiting 状态。

b 线程调用了 notify() 方法,这样 a 线程收到通知之后就可以从 wait() 方法中返回。

这里利用了 twothreadwaitnotify.class 对象完成了通信。

有一些需要注意:

  • wait() 、nofify() 、nofityall() 调用的前提都是获得了对象的锁(也可称为对象监视器)。
  • 调用 wait() 方法后线程会释放锁,进入 waiting 状态,该线程也会被移动到等待队列中。
  • 调用 notify() 方法会将等待队列中的线程移动到同步队列中,线程状态也会更新为 blocked
  • 从 wait() 方法返回的前提是调用 notify() 方法的线程释放锁,wait() 方法的线程获得锁。

等待通知有着一个经典范式:

线程 a 作为消费者:

1.获取对象的锁。

2.进入 while(判断条件),并调用 wait() 方法。

3.当条件满足跳出循环执行具体处理逻辑。

线程 b 作为生产者:

1.获取对象锁。

2.更改与线程 a 共用的判断条件。

3.调用 notify() 方法。

伪代码如下:

//thread a
synchronized(object){
while(条件){
object.wait();
}
//do something
}
//thread b
synchronized(object){
条件=false;//改变条件
object.notify();
}

join() 方法

private static void join() throws interruptedexception {
thread t1 = new thread(new runnable() {
@override
public void run() {
logger.info("running");
try {
thread.sleep(3000);
} catch (interruptedexception e) {
e.printstacktrace();
}
}
}) ;
thread t2 = new thread(new runnable() {
@override
public void run() {
logger.info("running2");
try {
thread.sleep(4000);
} catch (interruptedexception e) {
e.printstacktrace();
}
}
}) ;
t1.start();
t2.start();
//等待线程1终止
t1.join();
//等待线程2终止
t2.join();
logger.info("main over");
}

输出结果:

2018-03-16 20:21:30.967 [thread-1] info c.c.actual.threadcommunication - running2
2018-03-16 20:21:30.967 [thread-0] info c.c.actual.threadcommunication - running
2018-03-16 20:21:34.972 [main] info c.c.actual.threadcommunication - main over

t1.join() 时会一直阻塞到 t1 执行完毕,所以最终主线程会等待 t1 和 t2 线程执行完毕。

其实从源码可以看出,join() 也是利用的等待通知机制:

核心逻辑:

while (isalive()) {
wait(0);
}

在 join 线程完成后会调用 notifyall() 方法,是在 jvm 实现中调用,所以这里看不出来。

volatile 共享内存

因为 java 是采用共享内存的方式进行线程通信的,所以可以采用以下方式用主线程关闭 a 线程:

public class volatile implements runnable{
private static volatile boolean flag = true ;
@override
public void run() {
while (flag){
system.out.println(thread.currentthread().getname() + "正在运行。。。");
}
system.out.println(thread.currentthread().getname() +"执行完毕");
}
public static void main(string[] args) throws interruptedexception {
volatile avolatile = new volatile();
new thread(avolatile,"thread a").start();
system.out.println("main 线程正在运行") ;
timeunit.milliseconds.sleep(100) ;
avolatile.stopthread();
}
private void stopthread(){
flag = false ;
}
}

输出结果:

thread a正在运行。。。
thread a正在运行。。。
thread a正在运行。。。
thread a正在运行。。。
thread a执行完毕

这里的 flag 存放于主内存中,所以主线程和线程 a 都可以看到。

flag 采用 volatile 修饰主要是为了内存可见性,更多内容可以查看这里。

countdownlatch 并发工具

countdownlatch 可以实现 join 相同的功能,但是更加的灵活。

private static void countdownlatch() throws exception{
int thread = 3 ;
long start = system.currenttimemillis();
final countdownlatch countdown = new countdownlatch(thread);
for (int i= 0 ;i<thread ; i++){
new thread(new runnable() {
@override
public void run() {
logger.info("thread run");
try {
thread.sleep(2000);
countdown.countdown();
logger.info("thread end");
} catch (interruptedexception e) {
e.printstacktrace();
}
}
}).start();
}
countdown.await();
long stop = system.currenttimemillis();
logger.info("main over total time={}",stop-start);
}

输出结果:

2018-03-16 20:19:44.126 [thread-0] info c.c.actual.threadcommunication - thread run
2018-03-16 20:19:44.126 [thread-2] info c.c.actual.threadcommunication - thread run
2018-03-16 20:19:44.126 [thread-1] info c.c.actual.threadcommunication - thread run
2018-03-16 20:19:46.136 [thread-2] info c.c.actual.threadcommunication - thread end
2018-03-16 20:19:46.136 [thread-1] info c.c.actual.threadcommunication - thread end
2018-03-16 20:19:46.136 [thread-0] info c.c.actual.threadcommunication - thread end
2018-03-16 20:19:46.136 [main] info c.c.actual.threadcommunication - main over total time=2012

countdownlatch 也是基于 aqs(abstractqueuedsynchronizer) 实现的,更多实现参考 reentrantlock 实现原理

  • 初始化一个 countdownlatch 时告诉并发的线程,然后在每个线程处理完毕之后调用 countdown() 方法。
  • 该方法会将 aqs 内置的一个 state 状态 -1 。
  • 最终在主线程调用 await() 方法,它会阻塞直到state == 0的时候返回。

cyclicbarrier 并发工具

private static void cyclicbarrier() throws exception {
cyclicbarrier cyclicbarrier = new cyclicbarrier(3) ;
new thread(new runnable() {
@override
public void run() {
logger.info("thread run");
try {
cyclicbarrier.await() ;
} catch (exception e) {
e.printstacktrace();
}
logger.info("thread end do something");
}
}).start();
new thread(new runnable() {
@override
public void run() {
logger.info("thread run");
try {
cyclicbarrier.await() ;
} catch (exception e) {
e.printstacktrace();
}
logger.info("thread end do something");
}
}).start();
new thread(new runnable() {
@override
public void run() {
logger.info("thread run");
try {
thread.sleep(5000);
cyclicbarrier.await() ;
} catch (exception e) {
e.printstacktrace();
}
logger.info("thread end do something");
}
}).start();
logger.info("main thread");
}

cyclicbarrier 中文名叫做屏障或者是栅栏,也可以用于线程间通信。

它可以等待 n 个线程都达到某个状态后继续运行的效果。

1.首先初始化线程参与者。

2.调用await()将会在所有参与者线程都调用之前等待。

3.直到所有参与者都调用了await()后,所有线程从await()返回继续后续逻辑。

运行结果:

2018-03-18 22:40:00.731 [thread-0] info c.c.actual.threadcommunication - thread run
2018-03-18 22:40:00.731 [thread-1] info c.c.actual.threadcommunication - thread run
2018-03-18 22:40:00.731 [thread-2] info c.c.actual.threadcommunication - thread run
2018-03-18 22:40:00.731 [main] info c.c.actual.threadcommunication - main thread
2018-03-18 22:40:05.741 [thread-0] info c.c.actual.threadcommunication - thread end do something
2018-03-18 22:40:05.741 [thread-1] info c.c.actual.threadcommunication - thread end do something
2018-03-18 22:40:05.741 [thread-2] info c.c.actual.threadcommunication - thread end do something

可以看出由于其中一个线程休眠了五秒,所有其余所有的线程都得等待这个线程调用 await() 。

该工具可以实现 countdownlatch 同样的功能,但是要更加灵活。甚至可以调用 reset() 方法重置 cyclicbarrier (需要自行捕获 brokenbarrierexception 处理) 然后重新执行。

线程响应中断

public class stopthread implements runnable {
@override
public void run() {
while ( !thread.currentthread().isinterrupted()) {
// 线程执行具体逻辑
system.out.println(thread.currentthread().getname() + "运行中。。");
}
system.out.println(thread.currentthread().getname() + "退出。。");
}
public static void main(string[] args) throws interruptedexception {
thread thread = new thread(new stopthread(), "thread a");
thread.start();
system.out.println("main 线程正在运行") ;
timeunit.milliseconds.sleep(10) ;
thread.interrupt();
}
}

输出结果:

thread a运行中。。
thread a运行中。。
thread a退出。。

可以采用中断线程的方式来通信,调用了 thread.interrupt() 方法其实就是将 thread 中的一个标志属性置为了 true。

并不是说调用了该方法就可以中断线程,如果不对这个标志进行响应其实是没有什么作用(这里对这个标志进行了判断)。

但是如果抛出了 interruptedexception 异常,该标志就会被 jvm 重置为 false。

线程池 awaittermination() 方法

如果是用线程池来管理线程,可以使用以下方式来让主线程等待线程池中所有任务执行完毕:

private static void executorservice() throws exception{
blockingqueue<runnable> queue = new linkedblockingqueue<>(10) ;
threadpoolexecutor poolexecutor = new threadpoolexecutor(5,5,1, timeunit.milliseconds,queue) ;
poolexecutor.execute(new runnable() {
@override
public void run() {
logger.info("running");
try {
thread.sleep(3000);
} catch (interruptedexception e) {
e.printstacktrace();
}
}
});
poolexecutor.execute(new runnable() {
@override
public void run() {
logger.info("running2");
try {
thread.sleep(2000);
} catch (interruptedexception e) {
e.printstacktrace();
}
}
});
poolexecutor.shutdown();
while (!poolexecutor.awaittermination(1,timeunit.seconds)){
logger.info("线程还在执行。。。");
}
logger.info("main over");
}

输出结果:

2018-03-16 20:18:01.273 [pool-1-thread-2] info c.c.actual.threadcommunication - running2
2018-03-16 20:18:01.273 [pool-1-thread-1] info c.c.actual.threadcommunication - running
2018-03-16 20:18:02.273 [main] info c.c.actual.threadcommunication - 线程还在执行。。。
2018-03-16 20:18:03.278 [main] info c.c.actual.threadcommunication - 线程还在执行。。。
2018-03-16 20:18:04.278 [main] info c.c.actual.threadcommunication - main over

使用这个 awaittermination() 方法的前提需要关闭线程池,如调用了 shutdown() 方法。

调用了 shutdown() 之后线程池会停止接受新任务,并且会平滑的关闭线程池中现有的任务。

管道通信

public static void piped() throws ioexception {
//面向于字符 pipedinputstream 面向于字节
pipedwriter writer = new pipedwriter();
pipedreader reader = new pipedreader();
//输入输出流建立连接
writer.connect(reader);
thread t1 = new thread(new runnable() {
@override
public void run() {
logger.info("running");
try {
for (int i = 0; i < 10; i++) {
writer.write(i+"");
thread.sleep(10);
}
} catch (exception e) {
} finally {
try {
writer.close();
} catch (ioexception e) {
e.printstacktrace();
}
}
}
});
thread t2 = new thread(new runnable() {
@override
public void run() {
logger.info("running2");
int msg = 0;
try {
while ((msg = reader.read()) != -1) {
logger.info("msg={}", (char) msg);
}
} catch (exception e) {
}
}
});
t1.start();
t2.start();
}

输出结果:

2018-03-16 19:56:43.014 [thread-0] info c.c.actual.threadcommunication - running
2018-03-16 19:56:43.014 [thread-1] info c.c.actual.threadcommunication - running2
2018-03-16 19:56:43.130 [thread-1] info c.c.actual.threadcommunication - msg=0
2018-03-16 19:56:43.132 [thread-1] info c.c.actual.threadcommunication - msg=1
2018-03-16 19:56:43.132 [thread-1] info c.c.actual.threadcommunication - msg=2
2018-03-16 19:56:43.133 [thread-1] info c.c.actual.threadcommunication - msg=3
2018-03-16 19:56:43.133 [thread-1] info c.c.actual.threadcommunication - msg=4
2018-03-16 19:56:43.133 [thread-1] info c.c.actual.threadcommunication - msg=5
2018-03-16 19:56:43.133 [thread-1] info c.c.actual.threadcommunication - msg=6
2018-03-16 19:56:43.134 [thread-1] info c.c.actual.threadcommunication - msg=7
2018-03-16 19:56:43.134 [thread-1] info c.c.actual.threadcommunication - msg=8
2018-03-16 19:56:43.134 [thread-1] info c.c.actual.threadcommunication - msg=9

java 虽说是基于内存通信的,但也可以使用管道通信。

需要注意的是,输入流和输出流需要首先建立连接。这样线程 b 就可以收到线程 a 发出的消息了。

实际开发中可以灵活根据需求选择最适合的线程通信方式。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。