用代碼說話:如何正確啟動線程

先來看下結(jié)論:正確啟動線程的方式是使用start()方法价淌,而不是使用run()方法谎僻。

代碼實戰(zhàn)

1. 輸出線程名稱

“Talk is cheap. Show me the code”,用代碼說話:分別調(diào)用run()方法和start()方法绍刮,打印輸出線程的名字赦役。

public class StartAndRunThread {
    public static void main(String[] args) {
        Runnable runnable = new Runnable() {
            @Override
            public void run() {
                System.out.println(Thread.currentThread().getName());
            }
        };
        runnable.run();
        new Thread(runnable).start();
    }
}

運行結(jié)果:


image.png

2. 深入一點

如果代碼是這樣的,執(zhí)行結(jié)果有什么不同呢妇汗?

public class StartAndRunThread {
    public static void main(String[] args) {
        Runnable runnable = new Runnable() {
            @Override
            public void run() {
                System.out.println(Thread.currentThread().getName());
            }
        };
        runnable.run();
        new Thread(runnable).start();
        runnable.run();
    }
}

執(zhí)行結(jié)果為:


image.png

是不是有點意外帘不?然而,這就是真相铛纬。其實也不難解釋厌均。

  1. 我們說的并發(fā)是什么,并發(fā)不就是線程之間的運行互不干擾嘛告唆?當(dāng)JVM啟動的時候棺弊,創(chuàng)建一個mian線程來運行main()方法。當(dāng)執(zhí)行到“new Thread(runnable).start();”的時候main線程會新建一個Thread-0線程擒悬。main線程和Thread-0線程的執(zhí)行時互不相干的模她,所以可能不會出現(xiàn)“main-Thread-0-main”的結(jié)果。

  2. 我執(zhí)行了n(n>20)次懂牧,運行結(jié)果依然如上圖所示侈净,沒有出現(xiàn)“main-Thread-0-main”。這是為什么呢僧凤?回憶一下線程的生命周期畜侦, Java中,線程(Thread)定義了6種狀態(tài): NEW(新建)躯保、RUNNABLE(可執(zhí)行)旋膳、BLOCKED(阻塞)、WAITING(等待)途事、TIMED_WAITING(限時等待)验懊、TERMINATED(結(jié)束)擅羞。當(dāng)調(diào)用了start()方法之后,線程進入RUNNABLE狀態(tài)义图,RUNNABLE的意思是可運行减俏,即可能正在執(zhí)行,也可能沒有正在執(zhí)行碱工。那調(diào)用了start方法之后娃承,什么時候執(zhí)行呢?調(diào)用start()方法之后痛垛,我們只是告訴JVM去執(zhí)行這個線程草慧,至于什么時候運行是由線程調(diào)度器來決定的。從操作系統(tǒng)層面匙头,其實調(diào)用start()方法之后要去獲取操作系統(tǒng)的時間片漫谷,獲取到才會執(zhí)行。這個問題蹂析,可以對比思考“ thread.start()調(diào)用之后線程會立刻執(zhí)行嗎舔示?”更多可以參考:從源碼解讀線程(Thread)和線程池(ThreadPoolExecutor)的狀態(tài)

start()方法源碼分析

start()源碼如下:

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.
     *
     * A zero status value corresponds to state "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. */
    group.add(this);


    boolean started = false;
    try {
        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 */
        }
    }
}

可以看到,start()方法被synchronized關(guān)鍵字修飾电抚,保證了線程安全惕稻。啟動流程分為下面三個步驟:

  1. 首先會檢查線程狀態(tài),只有threadStatus == 0(也就是線程處于NEW狀態(tài))狀態(tài)下的線程才能繼續(xù)蝙叛,否則會拋出IllegalThreadStateException俺祠。

  2. 將線程加入線程組

  3. 調(diào)用native方法——start0()方法啟動線程。

線程啟動相關(guān)問題

1. 一個線程兩次調(diào)用start()方法會出現(xiàn)什么情況借帘?

會拋出IllegalThreadStateException蜘渣,具體原因可以用源碼和線程啟動步驟進行說明。

2. 既然 start() 方法會調(diào)用 run() 方法肺然,為什么我們選擇調(diào)用 start() 方法蔫缸,而不是直接調(diào)用 run() 方法呢?

start()才是真正啟動一個線程际起,而如果直接調(diào)用run()拾碌,那么run()只是一個普通的方法而已,和線程的生命周期沒有任何關(guān)系街望。用代碼驗證一下:

public class Main implements Runnable {

    @Override
    public void run() {
        System.out.println(Thread.currentThread().getName());
    }

    public static void main(String[] args) {
        new Main().run();
        new Thread(new Main()).start();
    }

}
image.png

在上面代碼中校翔,直接調(diào)用run()方法,run()只是一個普通的方法灾前,由當(dāng)前線程——main線程執(zhí)行防症。start()才是真正啟動一個線程——Thread0,run()方法由線程Thread0執(zhí)行。

3. 上面說start()會調(diào)用run()方法告希,這個怎么證明?為什么在start()方法的源碼中沒有看到調(diào)用了run()方法烧给?

可以看start()方法的注釋部分:

/**
* Causes this thread to begin execution; the Java Virtual Machine
* calls the <code>run</code> method of this thread.
* <p>
* 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).
* <p>
* It is never legal to start a thread more than once.
* In particular, a thread may not be restarted once it has completed
* execution.
*
* @exception  IllegalThreadStateException  if the thread was already
*               started.
* @see        #run()
* @see        #stop()
*/

也就是說當(dāng)該線程開始執(zhí)行的時候燕偶,Java虛擬機會自動調(diào)用該線程的run()方法。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末础嫡,一起剝皮案震驚了整個濱河市指么,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌榴鼎,老刑警劉巖伯诬,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異巫财,居然都是意外死亡盗似,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進店門平项,熙熙樓的掌柜王于貴愁眉苦臉地迎上來赫舒,“玉大人,你說我怎么就攤上這事闽瓢〗影” “怎么了?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵扣讼,是天一觀的道長缺猛。 經(jīng)常有香客問我,道長椭符,這世上最難降的妖魔是什么荔燎? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任,我火速辦了婚禮艰山,結(jié)果婚禮上湖雹,老公的妹妹穿的比我還像新娘。我一直安慰自己曙搬,他們只是感情好摔吏,可當(dāng)我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著纵装,像睡著了一般征讲。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上橡娄,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天诗箍,我揣著相機與錄音,去河邊找鬼挽唉。 笑死滤祖,一個胖子當(dāng)著我的面吹牛筷狼,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播匠童,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼埂材,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了汤求?” 一聲冷哼從身側(cè)響起俏险,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎扬绪,沒想到半個月后竖独,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡挤牛,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年莹痢,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片墓赴。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡格二,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出竣蹦,到底是詐尸還是另有隱情顶猜,我是刑警寧澤,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布痘括,位于F島的核電站长窄,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏纲菌。R本人自食惡果不足惜挠日,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望翰舌。 院中可真熱鬧嚣潜,春花似錦、人聲如沸椅贱。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽庇麦。三九已至计技,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間山橄,已是汗流浹背垮媒。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人睡雇。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓萌衬,卻偏偏與公主長得像,于是被迫代替她去往敵國和親它抱。 傳聞我的和親對象是個殘疾皇子奄薇,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,722評論 2 345

推薦閱讀更多精彩內(nèi)容