執行緒啟動原理
Java多執行緒,皆始於Thread。Thread是多執行緒的根,每一個執行緒的開啟都始於Thread的start()方法。那麼執行緒是如何被開啟,run方法是如何被執行的呢?先上圖:
這張圖在今後的幾個章節都會用到,其中只展示了部分關鍵方法。本文主要關注Thread類。
我們都知道啟動一個執行緒,必須呼叫一個Thread的start()方法。在面試時經常可能會被問到start()和run()方法的區別,為什麼一定要用start()方法才是啟動執行緒?對比start()方法和run()的原始碼一看便知:
/**
* Causes this thread to begin execution; the Java Virtual Machine
* calls the <code>run</code> method of this thread.
*
* 1、start方法將導致this thread開始執行。由JVM呼叫this thread的run方法。
*
* The result is that two threads are running concurrently: the
* current thread (which returns from the call to the
* <code>start</code> method) and the other thread (which executes its
* <code>run</code> method).
*
* 2、結果是 呼叫start方法的當前執行緒 和 執行run方法的另一個執行緒 同時執行。
*
* It is never legal to start a thread more than once.
* In particular, a thread may not be restarted once it has completed
* execution.
*
* 3、多次啟動執行緒永遠不合法。 特別是,執行緒一旦完成執行就不會重新啟動。
*
* @exception IllegalThreadStateException if the thread was already started.
* 如果執行緒已啟動,則丟擲異常。
* @see #run()
* @see #stop()
*/
public synchronized void start() {
/**
* This method is not invoked for the main method thread or "system"
* group threads created/set up by the VM. Any new functionality added
* to this method in the future may have to also be added to the VM.
*
* 4、對於由VM建立/設定的main方法執行緒或“system”組執行緒,不會呼叫此方法。
* 未來新增到此方法的任何新功能可能也必須新增到VM中。
*
* A zero status value corresponds to state "NEW".
* 5、status=0 代表是 status 是 "NEW"。
*/
if (threadStatus != 0)
throw new IllegalThreadStateException();
/* Notify the group that this thread is about to be started
* so that it can be added to the group's list of threads
* and the group's unstarted count can be decremented.
*
* 6、通知組該執行緒即將啟動,以便將其新增到執行緒組的列表中,
* 並且減少執行緒組的未啟動執行緒數遞減。
*
* */
group.add(this);
boolean started = false;
try {
//7、呼叫native方法,底層開啟非同步執行緒,並呼叫run方法。
start0();
started = true;
} finally {
try {
if (!started) {
group.threadStartFailed(this);
}
} catch (Throwable ignore) {
/* do nothing. If start0 threw a Throwable then it will be passed up the call stack
* 8、忽略異常。 如果start0丟擲一個Throwable,它將被傳遞給呼叫堆疊。
*/
}
}
}
//native方法,JVM建立並啟動執行緒,並呼叫run方法
private native void start0();
對於原始碼中的註釋並沒有省略,都進行了翻譯,可以更好的理解整個啟動過程。其中有幾個需要注意的點:
- start方法用synchronized修飾,為同步方法;
- 雖然為同步方法,但不能避免多次呼叫問題,用threadStatus來記錄執行緒狀態,如果執行緒被多次start會丟擲異常;threadStatus的狀態由JVM控制。
- 使用Runnable時,主執行緒無法捕獲子執行緒中的異常狀態。執行緒的異常,應線上程內部解決。
看完start()方法,執行緒的啟動邏輯已經比較清楚,要探究更底層的原理就需要探究native方法start0()了。
多執行緒系列目錄(不斷更新中):
執行緒啟動原理
執行緒中斷機制
多執行緒實現方式
FutureTask實現原理
執行緒池之ThreadPoolExecutor概述
執行緒池之ThreadPoolExecutor使用
執行緒池之ThreadPoolExecutor狀態控制
執行緒池之ThreadPoolExecutor執行原理
執行緒池之ScheduledThreadPoolExecutor概述
執行緒池的優雅關閉實踐
相關文章
- 執行緒的啟動執行緒
- Java執行緒池二:執行緒池原理Java執行緒
- 執行緒池原理執行緒
- C#多執行緒程式設計(1):執行緒的啟動C#執行緒程式設計
- Java 執行緒池執行原理分析Java執行緒
- Java執行緒篇——執行緒的開啟Java執行緒
- 執行緒池原理初探執行緒
- java多執行緒原理Java執行緒
- 程式與執行緒--原理執行緒
- java多執行緒:執行緒池原理、阻塞佇列Java執行緒佇列
- Concurrency(二:建立和啟動執行緒)執行緒
- 面試官:Java 執行緒如何啟動的?面試Java執行緒
- Java多執行緒的建立和啟動Java執行緒
- 【JUC】1-Java執行緒的啟動Java執行緒
- Java併發(四)----執行緒執行原理Java執行緒
- 執行緒、開啟執行緒的兩種方式、執行緒下的Join方法、守護執行緒執行緒
- 【多執行緒】ThreadLocal原理執行緒thread
- Java 執行緒同步原理探析Java執行緒
- 多執行緒:原理分析整理執行緒
- 多執行緒原理實現執行緒
- 多執行緒同步的原理執行緒
- java 執行緒淺解01[建立以及啟動]Java執行緒
- 【Java基礎】:執行緒的建立和啟動Java執行緒
- 使用委託開啟多執行緒(多執行緒深入)執行緒
- 【ASP.NET Core】執行原理(2):啟動WebHostASP.NETWeb
- python多執行緒程式設計2—執行緒的建立、啟動、掛起和退出Python執行緒程式設計
- 深入學習執行緒池原理執行緒
- Java執行緒池核心原理剖析Java執行緒
- 執行緒池的實現原理執行緒
- 圖解Java執行緒池原理圖解Java執行緒
- 執行緒屏障CyclicBarrier實現原理執行緒
- 執行緒池原理(JDK1.8)執行緒JDK
- Java執行緒池原理及分析Java執行緒
- 執行緒池原理與實踐執行緒
- 執行緒池核心原理淺析執行緒
- Java 18中啟動Project Loom數百萬執行緒JavaProjectOOM執行緒
- Java中啟動執行緒的方式及區別Java執行緒
- JAVA執行緒池原理原始碼解析—為什麼啟動一個執行緒池,提交一個任務後,Main方法不會退出?Java執行緒原始碼AI