[java]
package Debug;
public class DaemonThread extends Thread {
/**
* @author: candid
* @description: java program for daemon thread.
*/
DaemonThread() {
setDaemon(true);
}
public void run() {
System.out.println(“Is this thread Daemon? – ” + isDaemon());
}
}
[/java]
Output:
Is this thread Daemon? – true