守護執行緒是Java中的低優先權執行緒,它在後台運行,通常由JVM建立用於執行後台任務,如垃圾回收(GC)。 如果沒有使用者執行緒正在運行,即使守護執行緒正在運行,JVM也可以退出。守護線程的唯一目的是為使用者線程提供服務。可以使用isDaemon()方法來確定執行緒是否為守護執行緒。
Public boolean isDaemon()
class SampleThread implements Runnable { public void run() { if(Thread.currentThread().isDaemon()) System.out.println(Thread.currentThread().getName()+" is daemon thread"); else System.out.println(Thread.currentThread().getName()+" is user thread"); } } // Main class public class DaemonThreadTest { public static void main(String[] args){ SampleThread st = new SampleThread(); Thread th1 = new Thread(st,"Thread 1"); Thread th2 = new Thread(st,"Thread 2"); th2.setDaemon(true); // set the thread th2 to daemon. th1.start(); th2.start(); } }
Thread 1 is user thread Thread 2 is daemon thread
以上是isDaemon()方法在Java中的重要性是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!