欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

淺談Java線程Thread.join方法解析

 更新時間:2018年01月13日 11:10:32   作者:Ihesong  
本篇文章主要介紹了淺談Java線程Thread.join方法解析,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

join字面上是加入的意思,我們先看看join方法的解釋和實現(xiàn)。

/**
   * Waits for this thread to die.
   * 調(diào)用方線程(調(diào)用join方法的線程)執(zhí)行等待操作,直到被調(diào)用的線程(join方法所屬的線程)結束,再被喚醒
   * <p> An invocation of this method behaves in exactly the same
   * way as the invocation
   *
   *
   * @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是調(diào)用的

/**
   * Waits at most {@code millis} milliseconds for this thread to
   * die. A timeout of {@code 0} means to wait forever.
   * 等待線程執(zhí)行結束,或者指定的最大等待時間到了,調(diào)用方線程再次被喚醒,如果最大等待時間為0,則只能等線程執(zhí)行結束,才能被喚醒。
   * <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.
   *
   * 
   */
  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);
      }
    } else {
      while (isAlive()) {
        long delay = millis - now;
        if (delay <= 0) {
          break;
        }
        wait(delay);
        now = System.currentTimeMillis() - base;
      }
    }
  }

可以看到,join方法本身是通過wait方法來實現(xiàn)等待的,這里判斷如果線程還在運行中的話,則繼續(xù)等待,如果指定時間到了,或者線程運行完成了,則代碼繼續(xù)向下執(zhí)行,調(diào)用線程就可以執(zhí)行后面的邏輯了。

但是在這里沒有看到哪里調(diào)用notify或者notifyAll方法,如果沒有調(diào)用的話,那調(diào)用方線程會一直等待下去,那是哪里調(diào)用了喚醒它的方法呢?通過查證得知,原來在線程結束時,java虛擬機會執(zhí)行該線程的本地exit方法,

//線程退出函數(shù):
void JavaThread::exit(bool destroy_vm, ExitType exit_type) {
...
//這里會處理join相關的銷毀邏輯
ensure_join(this);
...
}
//處理join相關的銷毀邏輯
  static void ensure_join(JavaThread* thread) {
   Handle threadObj(thread, thread->threadObj());

   ObjectLocker lock(threadObj, thread);

   thread->clear_pending_exception();

   java_lang_Thread::set_thread_status(threadObj(), java_lang_Thread::TERMINATED);

   java_lang_Thread::set_thread(threadObj(), NULL);

   //這里就調(diào)用notifyAll方法,喚醒等待的線程
   lock.notify_all(thread);

   thread->clear_pending_exception();
  }

這樣線程什么時候被喚醒就明白了。下面寫個例子看下效果。

public class JoinTest {
  
  public static void main(String[] args) {
    
    ThreadBoy boy = new ThreadBoy();
    boy.start();
    
  }
  
  static class ThreadBoy extends Thread{
    @Override
    public void run() {
      
      System.out.println("男孩和女孩準備出去逛街");
      
      ThreadGirl girl = new ThreadGirl();
      girl.start();
      
      try {
        girl.join();
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      
      System.out.println("男孩和女孩開始去逛街了");
    }
  }
  
  static class ThreadGirl extends Thread{
    @Override
    public void run() {
      int time = 5000;
      
      System.out.println("女孩開始化妝,男孩在等待。。。");
      
      try {
        Thread.sleep(time);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      
      System.out.println("女孩化妝完成!,耗時" + time);
      
    }
  }
  
}

執(zhí)行結果為:

男孩和女孩準備出去逛街
女孩開始化妝,男孩在等待。。。
女孩化妝完成!,耗時5000
男孩和女孩開始去逛街了

就是男孩和女孩準備去逛街,女孩要化妝先,等女孩化妝完成了,再一起去逛街。

那join(time)的用法是怎么樣的呢?

public class JoinTest {
  
  public static void main(String[] args) {
    
    ThreadBoy boy = new ThreadBoy();
    boy.start();
    
  }
  
  static class ThreadBoy extends Thread{
    @Override
    public void run() {
      
      System.out.println("男孩和女孩準備出去逛街");
      
      ThreadGirl girl = new ThreadGirl();
      girl.start();
      
      int time = 2000;
      try {
        girl.join(time);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      
      System.out.println("男孩等了" + time + ", 不想再等了,去逛街了");
    }
  }
  
  static class ThreadGirl extends Thread{
    @Override
    public void run() {
      int time = 5000;
      
      System.out.println("女孩開始化妝,男孩在等待。。。");
      
      try {
        Thread.sleep(time);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      
      System.out.println("女孩化妝完成!,耗時" + time);
      
    }
  }
  
}

這里僅僅把join方法換成了join(time)方法,描述改了點,打印的結果是:

男孩和女孩準備出去逛街
女孩開始化妝,男孩在等待。。。
男孩等了2000, 不想再等了,去逛街了
女孩化妝完成!,耗時5000

男孩等了join(time)中的time時間,如果這個time時間到達之后,女孩所在的線程還沒執(zhí)行完,則不等待了,繼續(xù)執(zhí)行后面的邏輯,就是不等女孩了,自己去逛街。

由此看出,join方法是為了比較方便的實現(xiàn)兩個線程的同步執(zhí)行,線程1執(zhí)行,碰到線程2后,等待線程2執(zhí)行后,再繼續(xù)執(zhí)行線程1的執(zhí)行,加入的意思現(xiàn)在就比較形象化了。

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

  • 關于IDEA報錯Error:java 不支持發(fā)行版本17的原因及解決方案

    關于IDEA報錯Error:java 不支持發(fā)行版本17的原因及解決方案

    在rebuild或運行項目時提示“Error:java: 錯誤: 不支持發(fā)行版本 17”,本文將給大家介紹了IDEA提示“Error:java: 錯誤: 不支持發(fā)行版本17”的原因及解決方案,需要的朋友可以參考下
    2023-09-09
  • 解析ConcurrentHashMap: 預熱(內(nèi)部一些小方法分析)

    解析ConcurrentHashMap: 預熱(內(nèi)部一些小方法分析)

    ConcurrentHashMap是由Segment數(shù)組結構和HashEntry數(shù)組結構組成。Segment的結構和HashMap類似,是一種數(shù)組和鏈表結構,今天給大家普及java面試常見問題---ConcurrentHashMap知識,一起看看吧
    2021-06-06
  • 保證緩存和數(shù)據(jù)庫的數(shù)據(jù)一致性詳解

    保證緩存和數(shù)據(jù)庫的數(shù)據(jù)一致性詳解

    在實際開發(fā)過程中,緩存的使用頻率是非常高的,只要使用緩存和數(shù)據(jù)庫存儲,就難免會出現(xiàn)雙寫時數(shù)據(jù)一致性的問題,本文主要介紹了如何保證緩存和數(shù)據(jù)庫的數(shù)據(jù)一致性,需要的小伙伴可以參考閱讀
    2023-04-04
  • Spring Boot應用配置常用相關視圖解析器詳解

    Spring Boot應用配置常用相關視圖解析器詳解

    這篇文章主要給大家介紹了關于Spring Boot應用配置常用相關視圖解析器的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2018-12-12
  • SpringBoot+slf4j實現(xiàn)全鏈路調(diào)用日志跟蹤的方法(一)

    SpringBoot+slf4j實現(xiàn)全鏈路調(diào)用日志跟蹤的方法(一)

    本文重點給大家介紹Tracer集成的slf4j MDC功能,方便用戶在只簡單修改日志配置文件的前提下輸出當前 Tracer 上下文 TraceId,文章通過代碼給大家講解了在springboot中使用的技巧,感興趣的朋友跟隨小編一起看看吧
    2021-05-05
  • 如何基于java或js獲取URL返回狀態(tài)碼

    如何基于java或js獲取URL返回狀態(tài)碼

    這篇文章主要介紹了如何基于java或js獲取URL返回狀態(tài)碼,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2019-11-11
  • springboot整合redis配置詳細示例代碼

    springboot整合redis配置詳細示例代碼

    Redis是一種高性能的鍵值存儲數(shù)據(jù)庫,而Spring Boot是一個簡化了開發(fā)過程的Java框架,將兩者結合可以輕松地在Spring Boot項目中使用Redis來實現(xiàn)數(shù)據(jù)緩存、會話管理和分布式鎖等功能,這篇文章主要給大家介紹了關于springboot整合redis配置的相關資料,需要的朋友可以參考下
    2023-11-11
  • Java正則表達式匹配電話格式

    Java正則表達式匹配電話格式

    正則表達式是由普通的字符以及特殊字符組成的文字模式,用來在查找文字主體時待匹配的一個或多個字符串。本文給大家介紹java正則表達式匹配電話格式,對java正則表達式匹配相關知識感興趣的朋友一起學習吧
    2015-11-11
  • 舉例講解Java中Piped管道輸入輸出流的線程通信控制

    舉例講解Java中Piped管道輸入輸出流的線程通信控制

    Java中的PipedWriter、PipedReader類管道的讀寫依賴于PipedOutputStream、PipedInputStream兩個管道輸入輸出類,這里我們將來舉例講解Java中Piped管道輸入輸出流的線程通信控制:
    2016-06-06
  • Spring源碼解密之自定義標簽與解析

    Spring源碼解密之自定義標簽與解析

    這篇文章主要給大家介紹了關于Spring源碼解密之自定義標簽與解析的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參借鑒,下面隨著小編來一起學習學習吧。
    2018-01-01

最新評論