java多线程join

目的:程序执行完任务后,再执行其他的任务。
实现原理:
使用Thread类的join()方法时。当一个线程对象的join()方法被调用是,调用它的线程将被挂起,直到这个线程对象完成它的任务。
代码:引用的java7并发编程实战手册示例代码
package com.packtpub.java7.concurrency.chapter1.recipe6.task;

import java.util.Date;
import java.util.concurrent.TimeUnit;

/**
* Class that simulates an initialization operation. It sleeps during four seconds
*
*/
public class DataSourcesLoader implements Runnable {

/**
 * Main method of the class
 */
@Override
public void run() {

    // Writes a messsage
    System.out.printf("Begining data sources loading: %s\n",new Date());
    // Sleeps four seconds
    try {
        TimeUnit.SECONDS.sleep(4);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    // Writes a message
    System.out.printf("Data sources loading has finished: %s\n",new Date());
}

}

package com.packtpub.java7.concurrency.chapter1.recipe6.task;

import java.util.Date;
import java.util.concurrent.TimeUnit;

/**
* Class that simulates an initialization operation. It sleeps during six seconds
*
*/
public class NetworkConnectionsLoader implements Runnable {

/**
 * Main method of the class
 */
@Override
public void run() {
    // Writes a message
    System.out.printf("Begining network connections loading: %s\n",new Date());
    // Sleep six seconds
    try {
        TimeUnit.SECONDS.sleep(6);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    // Writes a message
    System.out.printf("Network connections loading has finished: %s\n",new Date());
}

}

package com.packtpub.java7.concurrency.chapter1.recipe6.core;

import java.util.Date;

import com.packtpub.java7.concurrency.chapter1.recipe6.task.DataSourcesLoader;
import com.packtpub.java7.concurrency.chapter1.recipe6.task.NetworkConnectionsLoader;

/**
* Main class of the Example. Create and start two initialization tasks
* and wait for their finish
*
*/
public class Main {

/**
 * Main method of the class. Create and star two initialization tasks
 * and wait for their finish
 * @param args
 */
public static void main(String[] args) {

    // Creates and starts a DataSourceLoader runnable object
    DataSourcesLoader dsLoader = new DataSourcesLoader();
    Thread thread1 = new Thread(dsLoader,"DataSourceThread");
    thread1.start();

    // Creates and starts a NetworkConnectionsLoader runnable object
    NetworkConnectionsLoader ncLoader = new NetworkConnectionsLoader();
    Thread thread2 = new Thread(ncLoader,"NetworkConnectionLoader");
    thread2.start();

    // Wait for the finalization of the two threads
    try {
        thread1.join();
        thread2.join();
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

    // Waits a message
    System.out.printf("Main: Configuration has been loaded: %s\n",new Date());
}

}

扩展:
这里写图片描述
通过查看源码看到join的重载方法
join():
join(long,int)
本质调用的都是join(long)
这里写图片描述
这里写图片描述
这里写图片描述
通过查看反编译后的源代码,可知道只要线程运行结束(isAlive)或者时间到了之后(delay<=0;break;),被挂起的线程将再次可以执行。

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值