淺談Java線程Thread.join方法解析
join字面上是加入的意思,我們先看看join方法的解釋和實(shí)現(xiàn)。
/** * Waits for this thread to die. * 調(diào)用方線程(調(diào)用join方法的線程)執(zhí)行等待操作,直到被調(diào)用的線程(join方法所屬的線程)結(jié)束,再被喚醒 * <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í)行結(jié)束,或者指定的最大等待時間到了,調(diào)用方線程再次被喚醒,如果最大等待時間為0,則只能等線程執(zhí)行結(jié)束,才能被喚醒。 * <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方法來實(shí)現(xiàn)等待的,這里判斷如果線程還在運(yùn)行中的話,則繼續(xù)等待,如果指定時間到了,或者線程運(yùn)行完成了,則代碼繼續(xù)向下執(zhí)行,調(diào)用線程就可以執(zhí)行后面的邏輯了。
但是在這里沒有看到哪里調(diào)用notify或者notifyAll方法,如果沒有調(diào)用的話,那調(diào)用方線程會一直等待下去,那是哪里調(diào)用了喚醒它的方法呢?通過查證得知,原來在線程結(jié)束時,java虛擬機(jī)會執(zhí)行該線程的本地exit方法,
//線程退出函數(shù): void JavaThread::exit(bool destroy_vm, ExitType exit_type) { ... //這里會處理join相關(guān)的銷毀邏輯 ensure_join(this); ... } //處理join相關(guān)的銷毀邏輯 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("男孩和女孩準(zhǔn)備出去逛街"); 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í)行結(jié)果為:
男孩和女孩準(zhǔn)備出去逛街
女孩開始化妝,男孩在等待。。。
女孩化妝完成!,耗時5000
男孩和女孩開始去逛街了
就是男孩和女孩準(zhǔn)備去逛街,女孩要化妝先,等女孩化妝完成了,再一起去逛街。
那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("男孩和女孩準(zhǔn)備出去逛街"); 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)方法,描述改了點(diǎn),打印的結(jié)果是:
男孩和女孩準(zhǔn)備出去逛街
女孩開始化妝,男孩在等待。。。
男孩等了2000, 不想再等了,去逛街了
女孩化妝完成!,耗時5000
男孩等了join(time)中的time時間,如果這個time時間到達(dá)之后,女孩所在的線程還沒執(zhí)行完,則不等待了,繼續(xù)執(zhí)行后面的邏輯,就是不等女孩了,自己去逛街。
由此看出,join方法是為了比較方便的實(shí)現(xiàn)兩個線程的同步執(zhí)行,線程1執(zhí)行,碰到線程2后,等待線程2執(zhí)行后,再繼續(xù)執(zhí)行線程1的執(zhí)行,加入的意思現(xiàn)在就比較形象化了。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
關(guān)于IDEA報錯Error:java 不支持發(fā)行版本17的原因及解決方案
在rebuild或運(yùn)行項(xiàng)目時提示“Error:java: 錯誤: 不支持發(fā)行版本 17”,本文將給大家介紹了IDEA提示“Error:java: 錯誤: 不支持發(fā)行版本17”的原因及解決方案,需要的朋友可以參考下2023-09-09解析ConcurrentHashMap: 預(yù)熱(內(nèi)部一些小方法分析)
ConcurrentHashMap是由Segment數(shù)組結(jié)構(gòu)和HashEntry數(shù)組結(jié)構(gòu)組成。Segment的結(jié)構(gòu)和HashMap類似,是一種數(shù)組和鏈表結(jié)構(gòu),今天給大家普及java面試常見問題---ConcurrentHashMap知識,一起看看吧2021-06-06保證緩存和數(shù)據(jù)庫的數(shù)據(jù)一致性詳解
在實(shí)際開發(fā)過程中,緩存的使用頻率是非常高的,只要使用緩存和數(shù)據(jù)庫存儲,就難免會出現(xiàn)雙寫時數(shù)據(jù)一致性的問題,本文主要介紹了如何保證緩存和數(shù)據(jù)庫的數(shù)據(jù)一致性,需要的小伙伴可以參考閱讀2023-04-04Spring Boot應(yīng)用配置常用相關(guān)視圖解析器詳解
這篇文章主要給大家介紹了關(guān)于Spring Boot應(yīng)用配置常用相關(guān)視圖解析器的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2018-12-12SpringBoot+slf4j實(shí)現(xiàn)全鏈路調(diào)用日志跟蹤的方法(一)
本文重點(diǎn)給大家介紹Tracer集成的slf4j MDC功能,方便用戶在只簡單修改日志配置文件的前提下輸出當(dāng)前 Tracer 上下文 TraceId,文章通過代碼給大家講解了在springboot中使用的技巧,感興趣的朋友跟隨小編一起看看吧2021-05-05