- 浏览: 157877 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (130)
- Database (5)
- JavaSE (23)
- JavaScript (11)
- Struts2 (15)
- Hibernate (11)
- Spring (16)
- Linux (4)
- Jquery (3)
- Tools (12)
- Jsp (7)
- 杂谈 (9)
- WEB Project (10)
- WebService (16)
- maven (2)
- android (1)
- memcache (2)
- 网络通信 (4)
- solr (1)
- cxf (7)
- powerdesigner (1)
- jxls (1)
- springmvc (1)
- nosql (1)
- node.js (0)
- thrift (0)
- REST (1)
- tag (1)
最新评论
原文:http://www.jiacheo.org/blog/262
Java如何等待子线程执行结束
今天讨论一个入门级的话题, 不然没东西更新对不起空间和域名~~
工作总往往会遇到异步去执行某段逻辑, 然后先处理其他事情, 处理完后再把那段逻辑的处理结果进行汇总的产景, 这时候就需要使用线程了.
一个线程启动之后, 是异步的去执行需要执行的内容的, 不会影响主线程的流程, 往往需要让主线程指定后, 等待子线程的完成. 这里有几种方式.
站在 主线程的角度, 我们可以分为主动式和被动式.
主动式指主线主动去检测某个标志位, 判断子线程是否已经完成. 被动式指主线程被动的等待子线程的结束, 很明显, 比较符合人们的胃口. 就是你事情做完了, 你告诉我, 我汇总一下, 哈哈.
那么主线程如何等待子线程工作完成呢. 很简单, Thread 类给我们提供了join 系列的方法, 这些方法的目的就是等待当前线程的die. 举个例子.
public
class
Threads {
public
static
void
main
(String[]
args
) {
SubThread thread
=
new
SubThread
()
;
thread
.
start
()
;
//主线程处理其他工作,让子线程异步去执行.
mainThreadOtherWork
()
;
System
.
out
.
println
(
“now waiting sub thread done.”
)
;
//主线程其他工作完毕,等待子线程的结束, 调用join系列的方法即可(可以设置超时时间)
try
{
thread
.
join
()
;
}
catch
(
InterruptedException e) {
e
.
printStackTrace
()
;
}
System
.
out
.
println
(
“now all done.”
)
;
}
private
static
void
mainThreadOtherWork
() {
System
.
out
.
println
(
“main thread work start”
)
;
try
{
Thread
.
sleep
(
3000L
)
;
}
catch
(
InterruptedException e) {
e
.
printStackTrace
()
;
}
System
.
out
.
println
(
“main thread work done.”
)
;
}
public
static
class
SubThread
extends
Thread{
@Override
public
void
run
() {
working
()
;
}
private
void
working
() {
System
.
out
.
println
(
“sub thread start working.”
)
;
busy
()
;
System
.
out
.
println
(
“sub thread stop working.”
)
;
}
private
void
busy
() {
try
{
sleep
(
5000L
)
;
}
catch
(
InterruptedException e) {
e
.
printStackTrace
()
;
}
}
}
}
本程序的数据有可能是如下:
- main thread work start
- sub thread start working.
- main thread work done.
- now waiting sub thread done.
- sub thread stop working.
- now all done.
忽略标号, 当然输出也有可能是1和2调换位置了. 这个我们是无法控制的. 我们看下线程的join操作, 究竟干了什么.
public
final
void
join()
throws
InterruptedException {
join(0)
;
}
这里是调用了
public
final
synchronized
void
join(
long
millis)
方法, 参数为0, 表示没有超时时间, 等到线程结束为止. join(millis)方法里面有这么一段代码:
while (isAlive()) {
wait(0)
;
}
说明, 当线程处于活跃状态的时候, 会一直等待, 直到这里的isAlive方法返回false, 才会结束.isAlive方法是一个本地方法, 他的作用是判断线程是否已经执行结束. 注释是这么写的:
Tests if this thread is alive. A thread is alive if it has been started and has not yet died.
可见, join系列方法可以帮助我们等待一个子线程的结束.
那么要问, 有没有另外一种方法可以等待子线程结束? 当然有的, 我们可以使用并发包下面的Future模式.
Future是一个任务执行的结果, 他是一个将来时, 即一个任务执行, 立即异步返回一个Future对象, 等到任务结束的时候, 会把值返回给这个future对象里面. 我们可以使用ExecutorService接口来提交一个线程.
public
class
Threads {
static
ExecutorService
executorService
=
Executors
.
newFixedThreadPool
(
1
)
;
@SuppressWarnings
(
“rawtypes”
)
public
static
void
main
(String[]
args
)
throws
InterruptedException
,
ExecutionException {
SubThread thread
=
new
SubThread
()
;
// thread.start();
Future
future
=
executorService
.
submit
(thread)
;
mainThreadOtherWork
()
;
System
.
out
.
println
(
“now waiting sub thread done.”
)
;
future
.
get
()
;
// try {
// thread.join();
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
System
.
out
.
println
(
“now all done.”
)
;
executorService
.
shutdown
()
;
}
private
static
void
mainThreadOtherWork
() {
System
.
out
.
println
(
“main thread work start”
)
;
try
{
Thread
.
sleep
(
3000L
)
;
}
catch
(InterruptedException e) {
e
.
printStackTrace
()
;
}
System
.
out
.
println
(
“main thread work done.”
)
;
}
public
static
class
SubThread
extends
Thread{
@Override
public
void
run
() {
working
()
;
}
private
void
working
() {
System
.
out
.
println
(
“sub thread start working.”
)
;
busy
()
;
System
.
out
.
println
(
“sub thread stop working.”
)
;
}
private
void
busy
() {
try
{
sleep
(
5000L
)
;
}
catch
(InterruptedException e) {
e
.
printStackTrace
()
;
}
}
}
}
这
里, ThreadPoolExecutor 是实现了 ExecutorService的方法,
sumbit的过程就是把一个Runnable接口对象包装成一个 Callable接口对象, 然后放到 workQueue里等待调度执行. 当然,
执行的启动也是调用了thread的start来做到的, 只不过这里被包装掉了. 另外, 这里的thread是会被重复利用的,
所以这里要退出主线程, 需要执行以下shutdown方法以示退出使用线程池. 扯远了.
这
种方法是得益于Callable接口和Future模式, 调用future接口的get方法, 会同步等待该future执行结束, 然后获取到结果.
Callbale接口的接口方法是 V call(); 是可以有返回结果的, 而Runnable的 void run(), 是没有返回结果的.
所以, 这里即使被包装成Callbale接口, future.get返回的结果也是null的.如果需要得到返回结果,
建议使用Callable接口.
通过队列来控制线程的进度, 是很好的一个理念. 我们完全可以自己搞个队列, 自己控制. 这样也可以实现. 不信看代码:
public
class
Threads {
// static ExecutorService executorService = Executors.newFixedThreadPool(1);
static
final
BlockingQueue
<
Integer
>
queue
=
new
ArrayBlockingQueue
<
Integer
>
(
1
)
;
public
static
void
main
(String[]
args
)
throws
InterruptedException
,
ExecutionException {
SubThread thread
=
new
SubThread
(
queue
)
;
thread
.
start
()
;
// Future future = executorService.submit(thread);
mainThreadOtherWork
()
;
System
.
out
.
println
(
“now waiting sub thread done.”
)
;
// future.get();
queue
.
take
()
;
// try {
// thread.join();
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
System
.
out
.
println
(
“now all done.”
)
;
// executorService.shutdown();
}
private
static
void
mainThreadOtherWork
() {
System
.
out
.
println
(
“main thread work start”
)
;
try
{
Thread
.
sleep
(
3000L
)
;
}
catch
(InterruptedException e) {
e
.
printStackTrace
()
;
}
System
.
out
.
println
(
“main thread work done.”
)
;
}
public
static
class
SubThread
extends
Thread{
private
BlockingQueue
<
Integer
>
queue
;
/**
*
@param
queue
*/
public
SubThread
(
BlockingQueue
<
Integer
>
queue
) {
this
.
queue
=
queue
;
}
@Override
public
void
run
() {
try
{
working
()
;
}
finally
{
try
{
queue
.
put
(
1
)
;
}
catch
(InterruptedException e) {
e
.
printStackTrace
()
;
}
}
}
private
void
working
() {
System
.
out
.
println
(
“sub thread start working.”
)
;
busy
()
;
System
.
out
.
println
(
“sub thread stop working.”
)
;
}
private
void
busy
() {
try
{
sleep
(
5000L
)
;
}
catch
(InterruptedException e) {
e
.
printStackTrace
()
;
}
}
}
}
这
里是得益于我们用了一个阻塞队列, 他的put操作和take操作都会阻塞(同步), 在满足条件的情况下.当我们调用take()方法是,
由于子线程还没结束, 队列是空的, 所以这里的take操作会阻塞, 直到子线程结束的时候, 往队列里面put了个元素, 表明自己结束了.
这时候主线程的take()就会返回他拿到的数据. 当然, 他拿到什么我们是不必去关心的.
以上几种情况都是针对子线程只有1个的时候. 当子线程有多个的时候, 情况就不妙了.
第一种方法, 你要调用很多个线程的join, 特别是当你的线程不是for循环创建的, 而是一个一个创建的时候.
第二种方法, 要调用很多的future的get方法, 同第一种方法.
第三种方法, 比较方便一些, 只需要每个线程都在queue里面 put一个元素就好了.但是, 第三种方法, 这个队列里的对象, 对我们是毫无用处, 我们为了使用队列, 而要不明不白浪费一些内存, 那有没有更好的办法呢?
有的, concurrency包里面提供了好多有用的东东, 其中, CountDownLanch就是我们要用的.
CountDownLanch 是一个倒数计数器, 给一个初始值(>=0),
然后没countDown一次就会减1, 这很符合等待多个子线程结束的产景: 一个线程结束的时候, countDown一次,
直到所有都countDown了 , 那么所有子线程就都结束了.
先看看CountDownLanch有哪些方法:
await: 会阻塞等待计数器减少到0位置. 带参数的await是多了等待时间.
countDown: 将当前的技术减1
getCount(): 返回当前的计数
显而易见, 我们只需要在子线程执行之前, 赋予初始化countDownLanch, 并赋予线程数量为初始值.
每个线程执行完毕的时候, 就countDown一下.主线程只需要调用await方法, 可以等待所有子线程执行结束, 看代码:
public
class
Threads {
// static ExecutorService executorService = Executors.newFixedThreadPool(1);
static
final
BlockingQueue
<
Integer
>
queue
=
new
ArrayBlockingQueue
<
Integer
>
(
1
)
;
public
static
void
main
(String[]
args
)
throws
InterruptedException
,
ExecutionException {
int
threads
=
5
;
CountDownLatch countDownLatch
=
new
CountDownLatch
(threads)
;
for
(
int
i
=
0
;
i
<
threads
;
i
++
){
SubThread thread
=
new
SubThread
(
2000
*
(i
+
1
)
,
countDownLatch)
;
thread
.
start
()
;
}
// Future future = executorService.submit(thread);
mainThreadOtherWork
()
;
System
.
out
.
println
(
“now waiting sub thread done.”
)
;
// future.get();
// queue.take();
countDownLatch
.
await
()
;
// try {
// thread.join();
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
System
.
out
.
println
(
“now all done.”
)
;
// executorService.shutdown();
}
private
static
void
mainThreadOtherWork
() {
System
.
out
.
println
(
“main thread work start”
)
;
try
{
Thread
.
sleep
(
3000L
)
;
}
catch
(InterruptedException e) {
e
.
printStackTrace
()
;
}
System
.
out
.
println
(
“main thread work done.”
)
;
}
public
static
class
SubThread
extends
Thread{
// private BlockingQueue<Integer> queue;
private
CountDownLatch
countDownLatch
;
private
long
work
;
/**
*
@param
queue
*/
// public SubThread(BlockingQueue<Integer> queue) {
// this.queue = queue;
// this.work = 5000L;
// }
public
SubThread
(
long
work
,
CountDownLatch
countDownLatch
) {
// this.queue = queue;
this
.
countDownLatch
=
countDownLatch
;
this
.
work
=
work
;
}
@Override
public
void
run
() {
try
{
working
()
;
}
finally
{
// try {
// queue.put(1);
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
countDownLatch
.
countDown
()
;
}
}
private
void
working
() {
System
.
out
.
println
(
getName
()
+
” sub thread start working.”
)
;
busy
()
;
System
.
out
.
println
(
getName
()
+
” sub thread stop working.”
)
;
}
private
void
busy
() {
try
{
sleep
(
work
)
;
}
catch
(InterruptedException e) {
e
.
printStackTrace
()
;
}
}
}
}
此种方法也适用于使用 ExecutorService summit 的任务的执行.
另外还有一个并发包的类CyclicBarrier, 这个是(子)线程之间的互相等待的利器. 栅栏, 就是把大家都在一个地方堵住, 就像水闸, 等大家都完成了之前的操作, 在一起继续下面的操作. 不过就不再本篇的讨论访问内了.
EOF
发表评论
-
Java编程中“为了性能”尽量要做到的一些地方
2012-07-04 14:44 6461.慎用synchronized,尽量减小synchroniz ... -
利用Session防止表单重复提交
2011-12-13 18:36 11771 由于服务器缓慢或者 ... -
java format(MessageFormat)
2011-12-06 17:20 767java.text.Format |__java. ... -
Ognl/MVEL/Aviator/JSEL 四种表达式引擎执行效率对比
2011-11-24 10:33 3002http://jindw.iteye.com/blog/732 ... -
java模拟javascript的encodeURI方法
2011-10-27 15:52 2938import java.io.UnsupportedEncod ... -
3种下载文件程序的思考,为何使用NIO进行异步网络通讯
2011-10-08 14:37 694原文链接:http://suhuanzheng7784877 ... -
cglib 动态代理
2011-08-12 10:35 740cglib is a powerful, high perfo ... -
【温故而知新】log4j输出多个自定义日志文件,动态配置路径
2011-08-10 15:38 8691. log4j输出多个自定义日志文件 log ... -
java7 新特性
2011-08-10 10:48 731原文链接:http://www.iteye ... -
Java版短网址(ShortUrl)的算法
2011-06-09 10:42 2745最近,我的项目中需要用到短网址(ShortUrl)的算法,于是 ... -
设计模式学习——适配器模式
2011-06-07 10:30 748某个类拥有我们所 ... -
用spring做一个javaMail功能的例子
2011-05-16 09:37 1219前言:项目中要做一个发送邮件的功能,在网上搜了一些代码,说的都 ... -
UML中几种类间关系:继承、实现、依赖、关联、聚合、组合的联系与区别
2010-10-14 18:38 871今天看到一篇好文,觉得还不错,褪去的记忆被唤醒:http:/ ... -
动态代理
2010-07-13 11:11 740http://www.iteye.com/topic/7103 ... -
ASCLL,Unicode 和 UTF-8
2010-05-15 13:36 14611.Ascll 算是比较早的编码,七位二进制数表示,当然在 ... -
String 详解
2010-05-12 10:29 799解析Java中的String对象的数据类型 1. 首先S ... -
判断数据的类型
2010-05-04 15:24 826// 字符类型 String if (pramets.get( ... -
关于ThreadLocal模式的体会
2010-03-18 11:00 1199本文转至::http://www.iteye.com/topi ... -
javaClassLoader类加载器详解<转>
2010-03-12 14:43 1038由于一个JDBC的基本封装 ... -
properties 文件 读写
2010-03-10 10:18 926import java.io.BufferedInputStr ...
相关推荐
JAVA 主线程等待子线程执行完毕再执行 JAVA 中的线程控制是非常重要的一部分,而在实际开发中,我们经常会遇到需要主线程等待子线程执行完毕再执行的情况。这种情况下,我们可以使用两种方式来实现:主动式和被动式...
总的来说,Java提供了丰富的多线程同步机制,可以根据实际需求选择合适的方法来实现“主线程等待所有子线程完成再继续”的功能。在并发编程中,理解并灵活运用这些工具对于提高程序效率和避免死锁等问题至关重要。
Java 主线程等待子线程执行完毕 Java 中的多线程编程是非常重要的一部分,特别是在需要并发执行多个任务的情况下。然而,在某些情况下,我们需要等待所有子线程执行完毕后再继续执行主线程的剩余动作。这时,我们...
"主线程等待子多线程(无结果返回)执行完成再继续执行"这个主题就涉及到如何在Java、C#、Python等编程语言中实现这种同步机制。下面将详细讨论这个知识点。 **1. Java中的`Thread.join()`方法** 在Java中,主线程...
在Java多线程编程中,有时我们需要确保所有子线程执行完毕后再进行后续操作,例如在并发测试、数据聚合或资源清理等场景。本篇文章将详细介绍五种在Java中等待所有子线程执行完的方法。 ### 方法一:使用`sleep`...
尝试在每个子线程的开始使用`t.join()`方法,虽然可以强制主线程等待子线程的完成,但这会导致线程顺序执行,失去并行处理的优势,违背了使用多线程的目的。 **3. 自定义线程类实现并发控制** 为了解决上述问题,...
为解决这个问题,我们需要使用同步机制,如Java中的`join()`方法或C#的`Thread.Join()`,让主线程等待所有子线程完成后再继续执行。当调用`join()`方法时,主线程会被阻塞,直到被调用的线程执行完毕。 例如,在...
要解决“让主线程等待所有子线程执行完毕”的问题,可以采用以下策略: 1. 使用`join()`方法:如提到的,直接在每个子线程的`start()`之后调用`t.join()`,会导致所有线程按顺序执行。这是因为`join()`会让主线程...
在 Java 中,实现等待所有子线程结束后再执行一段代码是非常重要的,因为它可以确保主线程等待所有子线程完成任务后再继续执行。这篇文章将详细介绍 Java 实现等待所有子线程结束后再执行一段代码的方法。 ...
### 多线程计数实现多线程执行后再执行主线程 #### 一、知识点概述 本文将深入探讨如何利用`CountDownLatch`机制来确保多个子线程完成各自的任务后,再让主线程继续执行的方法。这种方法在项目开发中非常实用,...
4. 对每个线程调用`join()`方法,使主线程等待子线程完成。 通过这种方式,你可以确保所有子任务在主线程结束前得以完成,这对于同步和资源清理等场景非常有用。同时,理解守护线程的概念和行为对于编写健壮的多...
总的来说,主线程控制子线程的`wait()`和`notify()`操作是Java并发编程中的高级技巧,它允许我们构建更复杂、更高效的应用程序,通过线程间的协作来解决问题。理解和掌握这些概念对于编写高并发、高性能的Java应用...
在Java多线程编程中,有时我们需要确保主线程在所有子线程完成执行后再继续执行。这在处理大量并发任务,比如数据导入、并行计算等场景中是常见的需求。以下是如何实现这一功能的详细解释。 首先,让我们理解为什么...
# 确保子线程执行一次后再执行主线程 child.join() for _ in range(50): main_thread() child_thread() ``` 在Java中,可以使用`Thread`类或`ExecutorService`来实现相同的功能: ```java public class Main { ...
这时,可以设置一个`CountDownLatch`,初始化计数值为线程的数量,每个线程执行完后调用`countDown()`,最后主线程通过调用`await()`方法等待计数值变为0,即所有线程执行完毕,然后进行结果的汇总。 **汇总结果** ...
主线程是每个Java应用程序的入口点,由`main()`方法所在的线程执行。在多线程环境中,主线程负责启动其他线程并管理它们。 3. **线程优先级** Java中的线程有10个优先级(1-10,1为最低,10为最高),默认优先级...
它的应用场景非常广泛,例如在处理大量数据时,可以使用多线程的方式处理,然后在主线程等待所有子线程处理完成。 CountDownLatch 的构造函数接收一个 int 类型的参数作为计数器,如果你想等待 N 个点完成,这里就...
当创建Thread的子类时,你需要重写run()方法,这个方法定义了线程执行的具体逻辑。例如,`Lefthand`和`Righthand`类就是两个Thread的子类,分别重写了run()方法,用来打印"我是左手线程"和"我是右手线程"。在main...
在这个例子中,`main`方法创建并启动`ThreadA`实例`t1`,然后调用`t1.join()`,导致主线程等待`t1`完成后再打印"t1 finished. Now Main thread continues."。因此,输出顺序将是`t1 started.`(来自`t1`的`run()`...