標籤:java io for ar 2014 art 時間 new
在某個線程中調用另一個線程的join方法,是將當前的cpu讓給另一個線程,等到規定的時間到了或另一個線程執行結束後,自己再執行。
package test;public class TestJoin1 {public static void main(String[] args) throws InterruptedException {TheOtherThread tot = new TheOtherThread();Thread t = new Thread(tot);t.start();//t.join();System.out.println("main");}}class TheOtherThread implements Runnable{@Overridepublic void run() {try {for (int i = 0; i < 10; i++) {Thread.sleep(1000);System.out.println(i);}} catch (InterruptedException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}
上面的結果會是
main0123456789
將t.join()前面的注釋去掉後結果會是
0123456789main
第二個例子
package test;import java.util.Date;public class TestJoin {public static void main(String[] args) {DateThreat dt1 = new DateThreat("a");DateThreat dt2 = new DateThreat("b");Thread t1 = new Thread(dt1);Thread t2 = new Thread(dt2);DateThreat dt3 = new DateThreat("c",t2);Thread t3 = new Thread(dt3);t1.start();t2.start();t3.start();}}class DateThreat implements Runnable{private String name ;private Thread t;public DateThreat(String name) {this.name = name;}public DateThreat(String name,Thread t) {this.name = name;this.t = t;}@Overridepublic void run() {try {System.out.println(this.name + " begin : " + new Date());if(t != null){t.join();}for(int i =0;i<10;i++){Thread.sleep(1000);System.out.println(this.name + " : " + i);}} catch (InterruptedException e) {e.printStackTrace();}System.out.println(this.name + " end : " + new Date());}}
a,b,c三個線程幾乎同時開始,但c永遠是在b執行結束後才開始執行
結果會是:
c begin : Tue Aug 12 17:59:16 CST 2014b begin : Tue Aug 12 17:59:16 CST 2014a begin : Tue Aug 12 17:59:16 CST 2014b : 0a : 0b : 1a : 1b : 2a : 2b : 3a : 3b : 4a : 4b : 5a : 5b : 6a : 6b : 7a : 7b : 8a : 8b : 9b end : Tue Aug 12 17:59:26 CST 2014a : 9a end : Tue Aug 12 17:59:26 CST 2014c : 0c : 1c : 2c : 3c : 4c : 5c : 6c : 7c : 8c : 9c end : Tue Aug 12 17:59:36 CST 2014
可以多運行幾遍