首页 > 代码库 > Java多线程中的join方法
Java多线程中的join方法
新建一个Thread,代码如下:
1 package com.thread.test; 2 3 public class MyThread extends Thread { 4 private String name; 5 public MyThread(String name) { 6 this.name = name; 7 } 8 @Override 9 public void run() { 10 for (int i = 0; i < 100; i++) { 11 System.out.println(name+"["+i+"]"); 12 } 13 super.run(); 14 } 15 }
之后新建测试类,代码如下:
1 package com.thread.test; 2 /* 3 * 0-50执行的是主线程,50-100执行的是A线程,并且将A线程完全执行完后才继续执行主线程 4 */ 5 public class ThreadDemo{ 6 public static void main(String[] args) { 7 MyThread t = new MyThread("A"); 8 t.start(); 9 for (int i = 0; i < 100; i++) { 10 if (i>50) { 11 try { 12 t.join(); 13 } catch (InterruptedException e) { 14 e.printStackTrace(); 15 } 16 } 17 System.out.println("主线程"+"["+i+"]"); 18 } 19 } 20 }
下面是Java Platform SE8 API中对Thread中Join方法的解释:
public final void join(long millis) throws InterruptedExceptionWaits at most millis milliseconds for this thread to die. A timeout of 0 means to wait forever. This implementation uses a loop of this.wait calls conditioned on this.isAlive. As a thread terminates the this.notifyAll method is invoked. It is recommended that applications not use wait, notify, or notifyAll on Thread instances. Parameters: millis - the time to wait in milliseconds Throws: IllegalArgumentException - if the value of millis is negative InterruptedException - if any thread has interrupted the current thread. The interrupted status of the current thread is cleared when this exception is thrown.
Java多线程中的join方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。