- 浏览: 244258 次
- 性别:
- 来自: LA
文章分类
- 全部博客 (84)
- java 技术 (16)
- spring MVC (1)
- spring framework (5)
- 正则 (1)
- Rest (1)
- log4j (1)
- java 线程 (7)
- 算法 (1)
- 版本控制 (7)
- WEB 前端 (4)
- 搜索 (3)
- 系统架构 (3)
- 设计模式 (2)
- 杂 (2)
- SOA (3)
- JAVA 数据库 (1)
- android (3)
- 数据库挖掘 (2)
- linux (3)
- web server (2)
- 分布式 (1)
- hadoop 相关 (3)
- ant&&maven (1)
- 性能调优 (2)
- javascript (2)
- sql (1)
- cookie (1)
- java 调试 (1)
- MYSQL (2)
- 数据库 (3)
最新评论
-
wangtuda:
git commit -amend是git commit -- ...
git 修改 已经提交了的注释 -
threenoodles:
...
java enum -
songjiesdnu:
...
java enum -
xy2401:
前面还好,看到后面好乱
spring annotation -
wf6916311:
Cookie
一、在研究join的用法之前,先明确两件事情。
1.join方法定义在Thread类中,则调用者必须是一个线程,
例如:
Thread t = new CustomThread();//这里一般是自定义的线程类
t.start();//线程起动
t.join();//此处会抛出InterruptedException异常
2.上面的两行代码也是在一个线程里面执行的。
以上出现了两个线程,一个是我们自定义的线程类,我们实现了run方法,做一些我们需要的工作;另外一个线程,生成我们自定义线程类的对象,然后执行
customThread.start();
customThread.join();
在这种情况下,两个线程的关系是一个线程由另外一个线程生成并起动,所以我们暂且认为第一个线程叫做“子线程”,另外一个线程叫做“主线程”。
二、为什么要用join()方法
主线程生成并起动了子线程,而子线程里要进行大量的耗时的运算(这里可以借鉴下线程的作用),当主线程处理完其他的事务后,需要用到子线程的处理结果,这个时候就要用到join();方法了。
三、join方法的作用
在网上看到有人说“将两个线程合并”。这样解释我觉得理解起来还更麻烦。不如就借鉴下API里的说法:
“等待该线程终止。”
解释一下,是主线程(我在“一”里已经命名过了)等待子线程的终止。也就是在子线程调用了join()方法后面的代码,只有等到子线程结束了才能执行。(Waits for this thread to die.)
四、用实例来理解
写一个简单的例子来看一下join()的用法,一共三个类:
1.CustomThread 类
2. CustomThread1类
3. JoinTestDemo 类,main方法所在的类。
代码1:
1package wxhx.csdn2;
2/**
3 *
4 * @author bzwm
5 *
6 */
7class CustomThread1 extends Thread {
8 public CustomThread1() {
9 super("[CustomThread1] Thread");
10 };
11 public void run() {
12 String threadName = Thread.currentThread().getName();
13 System.out.println(threadName + " start.");
14 try {
15 for (int i = 0; i < 5; i++) {
16 System.out.println(threadName + " loop at " + i);
17 Thread.sleep(1000);
18 }
19 System.out.println(threadName + " end.");
20 } catch (Exception e) {
21 System.out.println("Exception from " + threadName + ".run");
22 }
23 }
24}
25class CustomThread extends Thread {
26 CustomThread1 t1;
27 public CustomThread(CustomThread1 t1) {
28 super("[CustomThread] Thread");
29 this.t1 = t1;
30 }
31 public void run() {
32 String threadName = Thread.currentThread().getName();
33 System.out.println(threadName + " start.");
34 try {
35 t1.join();
36 System.out.println(threadName + " end.");
37 } catch (Exception e) {
38 System.out.println("Exception from " + threadName + ".run");
39 }
40 }
41}
42public class JoinTestDemo {
43 public static void main(String[] args) {
44 String threadName = Thread.currentThread().getName();
45 System.out.println(threadName + " start.");
46 CustomThread1 t1 = new CustomThread1();
47 CustomThread t = new CustomThread(t1);
48 try {
49 t1.start();
50 Thread.sleep(2000);
51 t.start();
52 t.join();//在代碼2里,將此處注釋掉
53 } catch (Exception e) {
54 System.out.println("Exception from main");
55 }
56 System.out.println(threadName + " end!");
57 }
58}
打印结果:
main start.//main方法所在的线程起动,但没有马上结束,因为调用t.join();,所以要等到t结束了,此线程才能向下执行。
[CustomThread1] Thread start.//线程CustomThread1起动
[CustomThread1] Thread loop at 0//线程CustomThread1执行
[CustomThread1] Thread loop at 1//线程CustomThread1执行
[CustomThread] Thread start.//线程CustomThread起动,但没有马上结束,因为调用t1.join();,所以要等到t1结束了,此线程才能向下执行。
[CustomThread1] Thread loop at 2//线程CustomThread1继续执行
[CustomThread1] Thread loop at 3//线程CustomThread1继续执行
[CustomThread1] Thread loop at 4//线程CustomThread1继续执行
[CustomThread1] Thread end. //线程CustomThread1结束了
[CustomThread] Thread end.// 线程CustomThread在t1.join();阻塞处起动,向下继续执行的结果
main end!//线程CustomThread结束,此线程在t.join();阻塞处起动,向下继续执行的结果。
修改一下代码,得到代码2:(这里只写出修改的部分)
1public class JoinTestDemo {
2 public static void main(String[] args) {
3 String threadName = Thread.currentThread().getName();
4 System.out.println(threadName + " start.");
5 CustomThread1 t1 = new CustomThread1();
6 CustomThread t = new CustomThread(t1);
7 try {
8 t1.start();
9 Thread.sleep(2000);
10 t.start();
11// t.join();//在代碼2里,將此處注釋掉
12 } catch (Exception e) {
13 System.out.println("Exception from main");
14 }
15 System.out.println(threadName + " end!");
16 }
17}
打印结果:
main start. // main方法所在的线程起动,但没有马上结束,这里并不是因为join方法,而是因为Thread.sleep(2000);
[CustomThread1] Thread start. //线程CustomThread1起动
[CustomThread1] Thread loop at 0//线程CustomThread1执行
[CustomThread1] Thread loop at 1//线程CustomThread1执行
main end!// Thread.sleep(2000);结束,虽然在线程CustomThread执行了t1.join();,但这并不会影响到其他线程(这里main方法所在的线程)。
[CustomThread] Thread start. //线程CustomThread起动,但没有马上结束,因为调用t1.join();,所以要等到t1结束了,此线程才能向下执行。
[CustomThread1] Thread loop at 2//线程CustomThread1继续执行
[CustomThread1] Thread loop at 3//线程CustomThread1继续执行
[CustomThread1] Thread loop at 4//线程CustomThread1继续执行
[CustomThread1] Thread end. //线程CustomThread1结束了
[CustomThread] Thread end. // 线程CustomThread在t1.join();阻塞处起动,向下继续执行的结果
五、从源码看join()方法
在CustomThread的run方法里,执行了t1.join();,进入看一下它的JDK源码:
1public final void join() throws InterruptedException {
2join(0);
3}
然后进入join(0)方法:
1 /**
2 * Waits at most <code>millis</code> milliseconds for this thread to
3 * die. A timeout of <code>0</code> means to wait forever. //注意这句
4 *
5 * @param millis the time to wait in milliseconds.
6 * @exception InterruptedException if another thread has interrupted
7 * the current thread. The <i>interrupted status</i> of the
8 * current thread is cleared when this exception is thrown.
9 */
10 public final synchronized void join(long millis) //参数millis为0.
11 throws InterruptedException {
12long base = System.currentTimeMillis();
13long now = 0;
14if (millis < 0) {
15 throw new IllegalArgumentException("timeout value is negative");
16}
17if (millis == 0) {//进入这个分支
18 while (isAlive()) {//判断本线程是否为活动的。这里的本线程就是t1.
19 wait(0);//阻塞
20 }
21} else {
22 while (isAlive()) {
23 long delay = millis - now;
24 if (delay <= 0) {
25 break;
26 }
27 wait(delay);
28 now = System.currentTimeMillis() - base;
29 }
30}
31 }
1.join方法定义在Thread类中,则调用者必须是一个线程,
例如:
Thread t = new CustomThread();//这里一般是自定义的线程类
t.start();//线程起动
t.join();//此处会抛出InterruptedException异常
2.上面的两行代码也是在一个线程里面执行的。
以上出现了两个线程,一个是我们自定义的线程类,我们实现了run方法,做一些我们需要的工作;另外一个线程,生成我们自定义线程类的对象,然后执行
customThread.start();
customThread.join();
在这种情况下,两个线程的关系是一个线程由另外一个线程生成并起动,所以我们暂且认为第一个线程叫做“子线程”,另外一个线程叫做“主线程”。
二、为什么要用join()方法
主线程生成并起动了子线程,而子线程里要进行大量的耗时的运算(这里可以借鉴下线程的作用),当主线程处理完其他的事务后,需要用到子线程的处理结果,这个时候就要用到join();方法了。
三、join方法的作用
在网上看到有人说“将两个线程合并”。这样解释我觉得理解起来还更麻烦。不如就借鉴下API里的说法:
“等待该线程终止。”
解释一下,是主线程(我在“一”里已经命名过了)等待子线程的终止。也就是在子线程调用了join()方法后面的代码,只有等到子线程结束了才能执行。(Waits for this thread to die.)
四、用实例来理解
写一个简单的例子来看一下join()的用法,一共三个类:
1.CustomThread 类
2. CustomThread1类
3. JoinTestDemo 类,main方法所在的类。
代码1:
1package wxhx.csdn2;
2/**
3 *
4 * @author bzwm
5 *
6 */
7class CustomThread1 extends Thread {
8 public CustomThread1() {
9 super("[CustomThread1] Thread");
10 };
11 public void run() {
12 String threadName = Thread.currentThread().getName();
13 System.out.println(threadName + " start.");
14 try {
15 for (int i = 0; i < 5; i++) {
16 System.out.println(threadName + " loop at " + i);
17 Thread.sleep(1000);
18 }
19 System.out.println(threadName + " end.");
20 } catch (Exception e) {
21 System.out.println("Exception from " + threadName + ".run");
22 }
23 }
24}
25class CustomThread extends Thread {
26 CustomThread1 t1;
27 public CustomThread(CustomThread1 t1) {
28 super("[CustomThread] Thread");
29 this.t1 = t1;
30 }
31 public void run() {
32 String threadName = Thread.currentThread().getName();
33 System.out.println(threadName + " start.");
34 try {
35 t1.join();
36 System.out.println(threadName + " end.");
37 } catch (Exception e) {
38 System.out.println("Exception from " + threadName + ".run");
39 }
40 }
41}
42public class JoinTestDemo {
43 public static void main(String[] args) {
44 String threadName = Thread.currentThread().getName();
45 System.out.println(threadName + " start.");
46 CustomThread1 t1 = new CustomThread1();
47 CustomThread t = new CustomThread(t1);
48 try {
49 t1.start();
50 Thread.sleep(2000);
51 t.start();
52 t.join();//在代碼2里,將此處注釋掉
53 } catch (Exception e) {
54 System.out.println("Exception from main");
55 }
56 System.out.println(threadName + " end!");
57 }
58}
打印结果:
main start.//main方法所在的线程起动,但没有马上结束,因为调用t.join();,所以要等到t结束了,此线程才能向下执行。
[CustomThread1] Thread start.//线程CustomThread1起动
[CustomThread1] Thread loop at 0//线程CustomThread1执行
[CustomThread1] Thread loop at 1//线程CustomThread1执行
[CustomThread] Thread start.//线程CustomThread起动,但没有马上结束,因为调用t1.join();,所以要等到t1结束了,此线程才能向下执行。
[CustomThread1] Thread loop at 2//线程CustomThread1继续执行
[CustomThread1] Thread loop at 3//线程CustomThread1继续执行
[CustomThread1] Thread loop at 4//线程CustomThread1继续执行
[CustomThread1] Thread end. //线程CustomThread1结束了
[CustomThread] Thread end.// 线程CustomThread在t1.join();阻塞处起动,向下继续执行的结果
main end!//线程CustomThread结束,此线程在t.join();阻塞处起动,向下继续执行的结果。
修改一下代码,得到代码2:(这里只写出修改的部分)
1public class JoinTestDemo {
2 public static void main(String[] args) {
3 String threadName = Thread.currentThread().getName();
4 System.out.println(threadName + " start.");
5 CustomThread1 t1 = new CustomThread1();
6 CustomThread t = new CustomThread(t1);
7 try {
8 t1.start();
9 Thread.sleep(2000);
10 t.start();
11// t.join();//在代碼2里,將此處注釋掉
12 } catch (Exception e) {
13 System.out.println("Exception from main");
14 }
15 System.out.println(threadName + " end!");
16 }
17}
打印结果:
main start. // main方法所在的线程起动,但没有马上结束,这里并不是因为join方法,而是因为Thread.sleep(2000);
[CustomThread1] Thread start. //线程CustomThread1起动
[CustomThread1] Thread loop at 0//线程CustomThread1执行
[CustomThread1] Thread loop at 1//线程CustomThread1执行
main end!// Thread.sleep(2000);结束,虽然在线程CustomThread执行了t1.join();,但这并不会影响到其他线程(这里main方法所在的线程)。
[CustomThread] Thread start. //线程CustomThread起动,但没有马上结束,因为调用t1.join();,所以要等到t1结束了,此线程才能向下执行。
[CustomThread1] Thread loop at 2//线程CustomThread1继续执行
[CustomThread1] Thread loop at 3//线程CustomThread1继续执行
[CustomThread1] Thread loop at 4//线程CustomThread1继续执行
[CustomThread1] Thread end. //线程CustomThread1结束了
[CustomThread] Thread end. // 线程CustomThread在t1.join();阻塞处起动,向下继续执行的结果
五、从源码看join()方法
在CustomThread的run方法里,执行了t1.join();,进入看一下它的JDK源码:
1public final void join() throws InterruptedException {
2join(0);
3}
然后进入join(0)方法:
1 /**
2 * Waits at most <code>millis</code> milliseconds for this thread to
3 * die. A timeout of <code>0</code> means to wait forever. //注意这句
4 *
5 * @param millis the time to wait in milliseconds.
6 * @exception InterruptedException if another thread has interrupted
7 * the current thread. The <i>interrupted status</i> of the
8 * current thread is cleared when this exception is thrown.
9 */
10 public final synchronized void join(long millis) //参数millis为0.
11 throws InterruptedException {
12long base = System.currentTimeMillis();
13long now = 0;
14if (millis < 0) {
15 throw new IllegalArgumentException("timeout value is negative");
16}
17if (millis == 0) {//进入这个分支
18 while (isAlive()) {//判断本线程是否为活动的。这里的本线程就是t1.
19 wait(0);//阻塞
20 }
21} else {
22 while (isAlive()) {
23 long delay = millis - now;
24 if (delay <= 0) {
25 break;
26 }
27 wait(delay);
28 now = System.currentTimeMillis() - base;
29 }
30}
31 }
发表评论
文章已被作者锁定,不允许评论。
-
JAVA逻辑运算符&&||&|区别
2012-09-19 09:37 1403逻辑运算符 Logical Operator 逻辑运算符只对 ... -
安装Eclipse反编译插件
2012-03-30 10:14 1572一、前提: 1、已经安装了Eclipse,如我的Eclip ... -
java list to array
2012-03-13 19:41 1101/** * cast list to array ... -
java 动态代理
2012-02-04 20:37 1096(3.) 基于Proxy的动态代理: JAVA 自带的动态代理 ... -
java Class 及 RTTI 相关
2012-02-04 19:52 1434运行时类型信息(RunTime Type Informatio ... -
java classloader
2011-12-24 17:29 1276java.lang.NoClassDefFoundError: ... -
Java内存管理的9个小技巧
2011-12-20 17:28 7451、别用new Boolean()。 ... -
java enum
2011-12-16 14:36 9973public enum Operation { P ... -
java enum 学习
2011-12-05 20:17 1935关键字: java enum 在像C这样强调数据结构的语言里, ... -
【转】Java中的Enum的使用与分析
2011-12-05 20:05 1566示例: public enum EnumTest { ... -
java Map 遍历 Map.Entry
2011-11-23 14:00 2042package com.talent.platform.dem ... -
笔记一
2011-11-22 20:34 876/** * The minimum prio ... -
【转】instanceof和isInstance(Object obj) 和isAssignableFrom(Class cls)的区别和联系
2011-11-22 20:29 1567编程的时候可能会遇到一个不知道它属于哪个类的对象,我们可以用下 ... -
【转】同步块和同步方法
2011-11-08 11:08 1040打个比方:一个object就 ... -
java Date
2011-11-06 12:10 10491.计算某一月份的最大天数 Calendar tim ...
相关推荐
Java多线程的实现主要有两种方式:继承Thread类和实现Runnable接口。继承Thread类是通过创建一个新的类,该类直接或间接地继承自Thread,并重写run()方法。这种方式下,每个线程都有自己的实例,可以直接调用start()...
《浅析多核处理器条件下的Java编程》这篇文章探讨了如何利用Java语言的多线程特性在多核处理器环境下实现高效编程。多核处理器是现代计算机硬件的重要组成部分,它通过集成多个处理器核心,允许同时处理多个任务,...
对于阻塞的线程,比如在调用Thread.sleep()、Thread.join()或Object.wait()时,如果线程被中断,会抛出InterruptedException异常。这个异常会清除中断状态,线程需要捕获这个异常并做出响应,通常意味着中断线程的...
对于阻塞状态的线程,如在执行`object.wait()`, `thread.join()`, 或者`Thread.sleep()`时,如果被中断,这些方法会抛出`InterruptedException`。这是线程中断机制的一个关键特性,因为它允许线程在阻塞状态下被唤醒...
5-4 Thread.join通信及其源码浅析.mp4 5-5 ThreadLocal的使用.mp4 5-6 Condition的使用.mp4 6-1 什么是原子类.mp4 6-2 原子更新基本类型.mp4 6-3 原子更新数组类型.mp4 6-4 原子地更新属性.mp4 6-5 原子更新...
5-4 Thread.join通信及其源码浅析.mp4 5-5 ThreadLocal的使用.mp4 5-6 Condition的使用.mp4 6-1 什么是原子类.mp4 6-2 原子更新基本类型.mp4 6-3 原子更新数组类型.mp4 6-4 原子地更新属性.mp4 6-5 原子更新...
5-4 Thread.join通信及其源码浅析.mp4 5-5 ThreadLocal的使用.mp4 5-6 Condition的使用.mp4 6-1 什么是原子类.mp4 6-2 原子更新基本类型.mp4 6-3 原子更新数组类型.mp4 6-4 原子地更新属性.mp4 6-5 原子更新...
5-4 Thread.join通信及其源码浅析.mp4 5-5 ThreadLocal的使用.mp4 5-6 Condition的使用.mp4 6-1 什么是原子类.mp4 6-2 原子更新基本类型.mp4 6-3 原子更新数组类型.mp4 6-4 原子地更新属性.mp4 6-5 原子更新...
5-4 Thread.join通信及其源码浅析.mp4 5-5 ThreadLocal的使用.mp4 5-6 Condition的使用.mp4 6-1 什么是原子类.mp4 6-2 原子更新基本类型.mp4 6-3 原子更新数组类型.mp4 6-4 原子地更新属性.mp4 6-5 原子更新...
#### 十二、JAVA的多线程浅析 ##### 1. JAVA语言的来源、及特点 - **起源**: - Java最初由Sun Microsystems开发。 - **特点**: - 面向对象。 - 平台无关性。 - 自动垃圾回收。 ##### 2. JAVA的多线程理论 - **...