国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

香港云服务器
服務器之家 - 編程語言 - JAVA教程 - Java線程編程中isAlive()和join()的使用詳解

Java線程編程中isAlive()和join()的使用詳解

2020-01-07 14:23goldensun JAVA教程

這篇文章主要介紹了Java線程編程中isAlive()和join()的使用詳解,是Java入門學習中的基礎知識,需要的朋友可以參考下

一個線程如何知道另一線程已經結束?Thread類提供了回答此問題的方法。

有兩種方法可以判定一個線程是否結束。第一,可以在線程中調用isAlive()。這種方法由Thread定義,它的通常形式如下:

?
1
final boolean isAlive( )

如果所調用線程仍在運行,isAlive()方法返回true,如果不是則返回false。但isAlive()很少用到,等待線程結束的更常用的方法是調用join(),描述如下:

?
1
final void join( ) throws InterruptedException

該方法等待所調用線程結束。該名字來自于要求線程等待直到指定線程參與的概念。join()的附加形式允許給等待指定線程結束定義一個最大時間。下面是前面例子的改進版本。運用join()以確保主線程最后結束。同樣,它也演示了isAlive()方法。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Using join() to wait for threads to finish.
class NewThread implements Runnable {
  String name; // name of thread
  Thread t;
  NewThread(String threadname) {
    name = threadname;
    t = new Thread(this, name);
    System.out.println("New thread: " + t);
    t.start(); // Start the thread
  }
  // This is the entry point for thread.
  public void run() {
    try {
      for(int i = 5; i > 0; i--) {
        System.out.println(name + ": " + i);
        Thread.sleep(1000);
      }
    } catch (InterruptedException e) {
      System.out.println(name + " interrupted.");
    }
    System.out.println(name + " exiting.");
  }
}
 
class DemoJoin {
  public static void main(String args[]) {
    NewThread ob1 = new NewThread("One");
    NewThread ob2 = new NewThread("Two");
    NewThread ob3 = new NewThread("Three");
    System.out.println("Thread One is alive: "+ ob1.t.isAlive());
    System.out.println("Thread Two is alive: "+ ob2.t.isAlive());
    System.out.println("Thread Three is alive: "+ ob3.t.isAlive());
    // wait for threads to finish
    try {
      System.out.println("Waiting for threads to finish.");
      ob1.t.join();
      ob2.t.join();
      ob3.t.join();
    } catch (InterruptedException e) {
      System.out.println("Main thread Interrupted");
    }
    System.out.println("Thread One is alive: "+ ob1.t.isAlive());
    System.out.println("Thread Two is alive: "+ ob2.t.isAlive());
    System.out.println("Thread Three is alive: "+ ob3.t.isAlive());
    System.out.println("Main thread exiting.");
  }
}

程序輸出如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
New thread: Thread[One,5,main]
New thread: Thread[Two,5,main]
New thread: Thread[Three,5,main]
Thread One is alive: true
Thread Two is alive: true
Thread Three is alive: true
Waiting for threads to finish.
One: 5
Two: 5
Three: 5
One: 4
Two: 4
Three: 4
One: 3
Two: 3
Three: 3
One: 2
Two: 2
Three: 2
One: 1
Two: 1
Three: 1
Two exiting.
Three exiting.
One exiting.
Thread One is alive: false
Thread Two is alive: false
Thread Three is alive: false
Main thread exiting.

如你所見,調用join()后返回,線程終止執行。

延伸 · 閱讀

精彩推薦
456
主站蜘蛛池模板: 四虎影视 | 亚洲精品成人av | 国产精品一区二区无线 | 亚洲一区二区三区视频 | 国产精品免费久久久久影视 | 男女视频网站 | 久草久| 免费成人av | 黑人巨大精品欧美一区免费视频 | 天堂av中文字幕 | www.色午夜.com| 色综合视频 | 国产精品一二 | 亚洲影视一区 | 国产激情在线视频 | 精品久久久久久久久久久 | 中文字幕三级 | 久久国产精品免费一区二区三区 | 91极品视频在线观看 | 精品成人一区二区三区 | 亚洲国产一区二区在线观看 | 国产精品3区 | 日本三级电影网站 | 亚洲aaa在线观看 | 在线a视频 | 日韩中文在线 | 99精品免费 | 久久美 | 亚洲精品日韩在线 | 在线观看一区二区三区四区 | 欧美精品网站 | 国产一区二区三区免费在线观看 | 欧美日韩电影一区二区三区 | 最新精品国产 | 亚洲精品一区二区三区在线 | 久久久成人精品 | 国产精品久久久久久中文字 | 亚洲免费视频网 | 精品在线91| 在线观看国产成人av片 | 国产精品不卡一区 |