亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JAVA多線程中join()方法怎么用

發布時間:2021-05-19 10:01:55 來源:億速云 閱讀:116 作者:小新 欄目:開發技術

小編給大家分享一下JAVA多線程中join()方法怎么用,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

雖然關于討論線程join()方法的博客已經非常極其特別多了,但是前幾天我有一個困惑卻沒有能夠得到詳細解釋,就是當系統中正在運行多個線程時,join()到底是暫停了哪些線程,大部分博客給的例子看起來都像是t.join()方法會使所有線程都暫停并等待t的執行完畢。當然,這也是因為我對多線程中的各種方法和同步的概念都理解的不是很透徹。通過看別人的分析和自己的實踐之后終于想明白了,詳細解釋一下希望能幫助到和我有相同困惑的同學。

首先給出結論:t.join()方法只會使主線程(或者說調用t.join()的線程)進入等待池并等待t線程執行完畢后才會被喚醒。并不影響同一時刻處在運行狀態的其他線程。

下面則是分析過程。

之前對于join()方法只是了解它能夠使得t.join()中的t優先執行,當t執行完后才會執行其他線程。能夠使得線程之間的并行執行變成串行執行。

package CSDN;
public class TestJoin {
 
 public static void main(String[] args) throws InterruptedException {
  // TODO Auto-generated method stub
  ThreadTest t1=new ThreadTest("A");
  ThreadTest t2=new ThreadTest("B");
  t1.start();
  t2.start();
 }
 
 
}
class ThreadTest extends Thread {
 private String name;
 public ThreadTest(String name){
  this.name=name;
 }
 public void run(){
  for(int i=1;i<=5;i++){
    System.out.println(name+"-"+i);
  }  
 }
}

運行結果:

A-1
B-1
B-2
B-3
A-2
B-4
A-3
B-5
A-4
A-5

可以看出A線程和B線程是交替執行的。

而在其中加入join()方法后(后面的代碼都略去了ThreadTest類的定義)

package CSDN;
public class TestJoin {
 
 public static void main(String[] args) throws InterruptedException {
  // TODO Auto-generated method stub
  ThreadTest t1=new ThreadTest("A");
  ThreadTest t2=new ThreadTest("B");
  t1.start();
  t1.join();
  t2.start();
 }
}

運行結果:

A-1
A-2
A-3
A-4
A-5
B-1
B-2
B-3
B-4
B-5

顯然,使用t1.join()之后,B線程需要等A線程執行完畢之后才能執行。需要注意的是,t1.join()需要等t1.start()執行之后執行才有效果,此外,如果t1.join()放在t2.start()之后的話,仍然會是交替執行,然而并不是沒有效果,這點困擾了我很久,也沒在別的博客里看到過。

為了深入理解,我們先看一下join()的源碼。

/**
     * Waits for this thread to die.
     *
     * <p> An invocation of this method behaves in exactly the same
     * way as the invocation
     *
     * <blockquote>
     * {@linkplain #join(long) join}{@code (0)}
     * </blockquote>
     *
     * @throws  InterruptedException
     *          if any thread has interrupted the current thread. The
     *          <i>interrupted status</i> of the current thread is
     *          cleared when this exception is thrown.
     */
    public final void join() throws InterruptedException {
        join(0);            //join()等同于join(0)
    }
    /**
     * Waits at most {@code millis} milliseconds for this thread to
     * die. A timeout of {@code 0} means to wait forever.
     *
     * <p> This implementation uses a loop of {@code this.wait} calls
     * conditioned on {@code this.isAlive}. As a thread terminates the
     * {@code this.notifyAll} method is invoked. It is recommended that
     * applications not use {@code wait}, {@code notify}, or
     * {@code notifyAll} on {@code Thread} instances.
     *
     * @param  millis
     *         the time to wait in milliseconds
     *
     * @throws  IllegalArgumentException
     *          if the value of {@code millis} is negative
     *
     * @throws  InterruptedException
     *          if any thread has interrupted the current thread. The
     *          <i>interrupted status</i> of the current thread is
     *          cleared when this exception is thrown.
     */
    public final synchronized void join(long millis) throws InterruptedException {
        long base = System.currentTimeMillis();
        long now = 0;
 
        if (millis < 0) {
            throw new IllegalArgumentException("timeout value is negative");
        }
 
        if (millis == 0) {
            while (isAlive()) {
                wait(0);           //join(0)等同于wait(0),即wait無限時間直到被notify
            }
        } else {
            while (isAlive()) {
                long delay = millis - now;
                if (delay <= 0) {
                    break;
                }
                wait(delay);
                now = System.currentTimeMillis() - base;
            }
        }
    }

可以看出,join()方法的底層是利用wait()方法實現的。可以看出,join方法是一個同步方法,當主線程調用t1.join()方法時,主線程先獲得了t1對象的鎖,隨后進入方法,調用了t1對象的wait()方法,使主線程進入了t1對象的等待池,此時,A線程則還在執行,并且隨后的t2.start()還沒被執行,因此,B線程也還沒開始。等到A線程執行完畢之后,主線程繼續執行,走到了t2.start(),B線程才會開始執行。

此外,對于join()的位置和作用的關系,我們可以用下面的例子來分析

package CSDN;
 
public class TestJoin {
 
 public static void main(String[] args) throws InterruptedException {
  // TODO Auto-generated method stub
  System.out.println(Thread.currentThread().getName()+" start");
  ThreadTest t1=new ThreadTest("A");
  ThreadTest t2=new ThreadTest("B");
  ThreadTest t3=new ThreadTest("C");
  System.out.println("t1start");
  t1.start();
  System.out.println("t2start");
  t2.start();
  System.out.println("t3start");
  t3.start();
  System.out.println(Thread.currentThread().getName()+" end");
 } 
}

運行結果為

main start
t1start
t1end
t2start
t2end
t3start
t3end
A-1
A-2
main end
C-1
C-2
C-3
C-4
C-5
A-3
B-1
B-2
B-3
B-4
B-5
A-4
A-5

A、B、C和主線程交替運行。加入join()方法后

package CSDN;
 
public class TestJoin {
 
 public static void main(String[] args) throws InterruptedException {
  // TODO Auto-generated method stub
  System.out.println(Thread.currentThread().getName()+" start");
  ThreadTest t1=new ThreadTest("A");
  ThreadTest t2=new ThreadTest("B");
  ThreadTest t3=new ThreadTest("C");
  System.out.println("t1start");
  t1.start();
  System.out.println("t1end");
  System.out.println("t2start");
  t2.start();
  System.out.println("t2end");
  t1.join();
  System.out.println("t3start");
  t3.start();
  System.out.println("t3end");
  System.out.println(Thread.currentThread().getName()+" end");
 } 
}

運行結果:

main start
t1start
t1end
t2start
t2end
A-1
B-1
A-2
A-3
A-4
A-5
B-2
t3start
t3end
B-3
main end
B-4
B-5
C-1
C-2
C-3
C-4
C-5

多次實驗可以看出,主線程在t1.join()方法處停止,并需要等待A線程執行完畢后才會執行t3.start(),然而,并不影響B線程的執行。因此,可以得出結論,t.join()方法只會使主線程進入等待池并等待t線程執行完畢后才會被喚醒。并不影響同一時刻處在運行狀態的其他線程。

PS:join源碼中,只會調用wait方法,并沒有在結束時調用notify,這是因為線程在die的時候會自動調用自身的notifyAll方法,來釋放所有的資源和鎖。

java基本數據類型有哪些

Java的基本數據類型分為:1、整數類型,用來表示整數的數據類型。2、浮點類型,用來表示小數的數據類型。3、字符類型,字符類型的關鍵字是“char”。4、布爾類型,是表示邏輯值的基本數據類型。

看完了這篇文章,相信你對“JAVA多線程中join()方法怎么用”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

溧水县| 丰城市| 木里| 徐州市| 大厂| 夏津县| 松溪县| 金坛市| 陕西省| 秭归县| 彩票| 阿克苏市| 河源市| 塘沽区| 卫辉市| 栖霞市| 宽城| 铁岭市| 甘谷县| 浦东新区| 玛纳斯县| 凌海市| 宜黄县| 惠州市| 高碑店市| 突泉县| 建阳市| 南漳县| 自治县| 水城县| 迁安市| 泽库县| 文昌市| 宁陵县| 健康| 夏河县| 六盘水市| 监利县| 响水县| 万源市| 星子县|