当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Thread isDaemon()用法及代码示例


线程类的 isDaemon() 方法检查线程是否为守护线程。如果线程是守护线程,则此方法将返回 true,否则返回 false。

用法

public final boolean isDaemon()

返回

如果线程是守护线程,则此方法将返回 true,否则返回 false。

示例

public class JavaIsDaemonExp extends Thread
{  
    public void run()
    {  
        //checking for daemon thread  
        if(Thread.currentThread().isDaemon())
        {
            System.out.println("daemon thread work");  
        }  
        else
        {  
            System.out.println("user thread work");  
        }  
    }  
    public static void main(String[] args)
    {  
        // creating three threads
        JavaIsDaemonExp t1=new JavaIsDaemonExp(); 
        JavaIsDaemonExp t2=new JavaIsDaemonExp();  
        JavaIsDaemonExp t3=new JavaIsDaemonExp();  
        // set user thread t1 to daemon thread  
        t1.setDaemon(true);
        //starting all the threads 
        t1.start(); 
        t2.start();  
        t3.start();  
    }  
}

输出:

daemon thread work
user thread work
user thread work






相关用法


注:本文由纯净天空筛选整理自 Java Thread isDaemon() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。