Java將線程分爲User線程和Daemon線程兩種。其中Daemon thread即守護線程。
1.所謂守護線程就是運行在程序後臺的線程,程序的主線程Main(比方java程序一開始啓動時建立的那個線程)不會是守護線程 java
2.Daemon thread在Java裏面的定義是,若是虛擬機中只有Daemon thread 在運行,則虛擬機退出。
一般Daemon線程用來爲User線程提供某些服務。程序的main()方法線程是一個User進程,User進程建立的進程爲User進程。當全部的User線程結束後,JVM纔會結束。 app
3.經過在一個線程對象上調用setDaemon(true),能夠將user線程建立的線程明確地設置成Daemon線程。例如,時鐘處理線程、idle線程、垃圾回收線程、屏幕更新線程等,都是Daemon線程。一般新建立的線程會從建立它的進程哪裏繼承daemon狀態,除非明確地在線程對象上調用setDaemon方法來改變daemon狀態。
須要注意的是,setDaemon()方法必須在調用線程的start()方法以前調用。一旦一個線程開始執行(如,調用了start()方法),它的daemon狀態不能再修改。經過方法isDaemon()能夠知道一個線程是否Daemon線程。this
4.總之,必須等全部的Non-daemon線程都運行結束了,只剩下daemon的時候,JVM纔會停下來,注意Main主程序是Non-daemon線程,默認產生的線程所有是Non-daemon線程。spa
經過下面一段代碼,能夠很清楚地說明daemon的做用。當設置線程t爲Daemon線程時,只要User線程(main線程)一結束,程序當即退出,Daemon線程沒有時間從10數到1。可是,若是將線程t設成非daemon,即User線程,則該線程能夠完成本身的工做(從10數到1)。
.net
[java] view plaincopy線程
import static java.util.concurrent.TimeUnit.*; orm
public class DaemonTest { 對象
public static void main(String[] args) throws InterruptedException { blog
Runnable r = new Runnable() { 繼承
public void run() {
for (int time = 10; time > 0; --time) {
System.out.println("Time #" + time);
try {
SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
};
Thread t = new Thread(r);
t.setDaemon(true); // try to set this to "false" and see what happens
t.start();
System.out.println("Main thread waiting...");
SECONDS.sleep(6);
System.out.println("Main thread exited.");
}
}
當t.setDaemon(true),即t爲Daemon線程時,執行結果以下:
t爲Daemon線程的輸出:
Time #10
Time #9
Time #8
Main thread exited.
Time #7
當t.setDaemon(false),即t爲User線程時,執行結果以下:
Main thread waiting...
Time #10
Time #9
Time #8
Main thread exited.
Time #7
Time #6
Time #5
Time #4
Time #3
Time #2
Time #1