程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Java多線程:“基礎篇”03之Thread中start()和run()的區別

Java多線程:“基礎篇”03之Thread中start()和run()的區別

編輯:關於JAVA

概要

Thread類包含start()和run()方法,它們的區別是什麼?本章將對此作出解答。本章內容包括:

start() 和 run()的區別說明

start() 和 run()的區別示例

start() 和 run()相關源碼(基於 JDK1.7.0_40)

轉載請注明出處:http://www.cnblogs.com/skywang12345/p/3479083.html

start() 和 run()的區別說明

start() : 它的作用是啟動一個新線程,新線程會執行相應的run()方法。start()不能被重復調用。

run()   : run()就和普通的成員方法一樣,可以被重復調用。單獨調用run()的話,會在當前線 程中執行run(),而並不會啟動新線程!

下面以代碼來進行說明。

class MyThread extends Thread{  
    public void run(){
        ...
    } 
};
MyThread mythread = new MyThread();

mythread.start()會啟動一個新線程,並在新線程中運行run()方法。

而mythread.run()則會直接 在當前線程中運行run()方法,並不會啟動一個新線程來運行run()。

start() 和 run()的區別示例

下面,通過一個簡單示例演示它們之間的區別。源碼如下:

// Demo.java 的源碼
class MyThread extends Thread{  
    public MyThread(String name) {
        super(name);
    }
    
    public void run(){
        System.out.println(Thread.currentThread().getName()+" is running");
    } 
}; 
    
public class Demo {  
    public static void main(String[] args) {  
        Thread mythread=new MyThread("mythread");
    
        System.out.println(Thread.currentThread().getName()+" call mythread.run()");
        mythread.run();
    
        System.out.println(Thread.currentThread().getName()+" call mythread.start()");
        mythread.start();
    }  
}

運行結果:

main call mythread.run()

main is running

main call mythread.start()

mythread is running

結果說明:

(01) Thread.currentThread().getName()是用於獲取“當前線程”的名字 。當前線程是指正在cpu中調度執行的線程。

(02) mythread.run()是在“主線程main”中 調用的,該run()方法直接運行在“主線程main”上。

(03) mythread.start()會啟動 “線程mythread”,“線程mythread”啟動之後,會調用run()方法;此時的run() 方法是運行在“線程mythread”上。

start() 和 run()相關源碼(基於JDK1.7.0_40)

Thread.java中start()方法的源碼如下:

public synchronized void start() {
    // 如果線程不是"就緒狀態",則拋出異常!
    if (threadStatus != 0)
        throw new IllegalThreadStateException();
    
    // 將線程添加到ThreadGroup中
    group.add(this);
    
    boolean started = false;
    try {
        // 通過start0()啟動線程
        start0();
        // 設置started標記
        started = true;
    } finally {
        try {
            if (!started) {
                group.threadStartFailed(this);
            }
        } catch (Throwable ignore) {
        }
    }
}

說明:start()實際上是通過本地方法start0()啟動線程的。而start0()會新運行一個線程,新線程會 調用run()方法。

private native void start0();

Thread.java中run()的代碼如下:

public void run() {
    if (target != null) {
        target.run();
    }
}

說明:target是一個Runnable對象。run()就是直接調用Thread線程的Runnable成員的run()方法,並 不會新建一個線程。

查看本欄目

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved