java的join方法

來源:互聯網
上載者:User

標籤: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

可以多運行幾遍

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.