91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

淺談java線程join方法使用方法

發布時間:2020-08-23 20:46:58 來源:腳本之家 閱讀:151 作者:smileNicky 欄目:編程語言

本博客簡介介紹一下java線程的join方法,join方法是實現線程同步,可以將原本并行執行的多線程方法變成串行執行的

如圖所示代碼,是并行執行的

public class ThreadTest {
  //private static final Long count = 10000L;
  public static void main(String[] args){
    long base = System.currentTimeMillis();
    try {
      ThreadJoin t1 = new ThreadJoin("線程1");
      ThreadJoin t2 = new ThreadJoin("線程2");
      //t1.join();
      t1.start();
      t1.join();
      t2.start();

    } catch (Exception e) {
      e.printStackTrace();
    }
    long time = System.currentTimeMillis() - base;
    System.out.println("執行時間:"+time);
  }
  
}
class ThreadJoin extends Thread{
  private static final Long count = 10L;

  public ThreadJoin(String name){
    super(name);
  }

  @Override
  public void run() {
    //super.run();
    for(int i = 1; i <= count; i ++){
      System.out.println(this.getName()+":"+i);
    }
  }
}

打印出來的信息,都是這樣的

執行時間:0
線程1:1
線程2:1
線程2:2
線程2:3
線程2:4
線程2:5
線程2:6
線程2:7
線程2:8
線程2:9
線程2:10
線程1:2
線程1:3
線程1:4
線程1:5
線程1:6
線程1:7
線程1:8
線程1:9
線程1:10

要實現串行執行,可以加上join方法,實現線程1執行完成后才開始執行線程2,也就是串行執行

public class ThreadTest {
  //private static final Long count = 10000L;
  public static void main(String[] args){
    long base = System.currentTimeMillis();
    try {
      ThreadJoin t1 = new ThreadJoin("線程1");
      ThreadJoin t2 = new ThreadJoin("線程2");
      //t1.join();
      t1.start();
      t1.join();
      t2.start();

    } catch (Exception e) {
      e.printStackTrace();
    }
    long time = System.currentTimeMillis() - base;
    System.out.println("執行時間:"+time);
  }
  
}
class ThreadJoin extends Thread{
  private static final Long count = 10L;

  public ThreadJoin(String name){
    super(name);
  }

  @Override
  public void run() {
    //super.run();
    for(int i = 1; i <= count; i ++){
      System.out.println(this.getName()+":"+i);
    }
  }
}

線程1:1
線程1:2
線程1:3
線程1:4
線程1:5
線程1:6
線程1:7
線程1:8
線程1:9
線程1:10
執行時間:0
線程2:1
線程2:2
線程2:3
線程2:4
線程2:5
線程2:6
線程2:7
線程2:8
線程2:9
線程2:10

從執行結果看,已經是串行執行線程

所以上面的例子是調了現場1的join方法,也就是說要先執行完成線程1,然后才執行main主線程

join方法的作用是,舉個例子,在A線程里調B線程的join方法時,要先B線程執行完成,然后才會繼續執行A線程

ok,上面調join方法是不加參數的,也可以加上參數,比如線程A.join(10);,就是說線程A執行10s后,繼續執行B線程

注意:join時間參數缺省的情況,默認是0,也就是說join()等同于join(0);

/**
   * 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);
  }

Thread類里的源碼,可以看出默認賦值為0,然后這個0是什么意思?0不是表示執行0s,而是表示要A線程執行完成才繼續執行B線程的意思

ok,然后為什么調用了join方法就可以實現線程同步?我們簡單看一下代碼:

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");
    }
 //執行時間為0或者缺省情況
    if (millis == 0) {
      while (isAlive()) {//表示線程還沒執行好
        wait(0);//調用線程的wait方法
      }
    } else {//執行時間大于0的情況
      while (isAlive()) {
        long delay = millis - now;//循環計算延期時間
        if (delay <= 0) {
          break;
        }
        wait(delay);//同樣調用線程的wait方法
        now = System.currentTimeMillis() - base;
      }
    }
  }

ok,看了一下源碼,還是比較容易理解的,其實就是調用了現場wait方法實現線程同步的

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

封丘县| 平罗县| 墨竹工卡县| 肥乡县| 敦化市| 永善县| 陇川县| 自治县| 英吉沙县| 洱源县| 陆川县| 东明县| 道真| 南充市| 繁峙县| 梧州市| 安国市| 四会市| 佛坪县| 梨树县| 綦江县| 堆龙德庆县| 新郑市| 松滋市| 盐边县| 海丰县| 永德县| 平凉市| 巴林右旗| 永福县| 监利县| 哈尔滨市| 禹城市| 洪泽县| 望奎县| 衢州市| 阿勒泰市| 庆阳市| 修水县| 金秀| 胶州市|