Java Thread isDaemon() 方法



描述

Java Thread isDaemon() 方法测试此线程是否是守护线程。

声明

以下是java.lang.Thread.isDaemon() 方法的声明

public final boolean isDaemon()

参数

返回值

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

异常

示例:检查守护线程为 false

以下示例演示了 Java Thread isDaemon() 方法的使用。在这个程序中,我们通过扩展 Thread 类创建了一个线程类 AdminThread。在构造函数中,我们使用 setDaemon() 方法将线程状态设置为守护线程为 false。在 run() 方法中,我们使用 isDaemon() 打印线程是否是守护线程的状态。在 main() 方法中,创建了一个 AdminThread 线程,并使用 setDaemon() 方法将守护线程设置为 false,并调用 start() 方法运行线程。

package com.tutorialspoint;

class AdminThread extends Thread {

   AdminThread() {
      setDaemon(false);
   }

   public void run() {
      boolean d = isDaemon();
      System.out.println("daemon = " + d);
   }
}

public class ThreadDemo {

   public static void main(String[] args) throws Exception {
    
      Thread thread = new AdminThread();
      System.out.println("thread = " + thread.currentThread());
      thread.setDaemon(false);
   
      // this will call run() method
      thread.start();
   }
} 

输出

让我们编译并运行上面的程序,这将产生以下结果:

thread = Thread[main,5,main]
daemon = false

示例:检查守护线程为 false

以下示例演示了 Java Thread isDaemon() 方法的使用。在这个程序中,我们通过扩展 Thread 类创建了一个线程类 AdminThread。在构造函数中,我们使用 setDaemon() 方法将线程状态设置为守护线程为 true。在 run() 方法中,我们使用 isDaemon() 打印线程是否是守护线程的状态。在 main() 方法中,创建了一个 AdminThread 线程,并使用 setDaemon() 方法将守护线程设置为 true,并调用 start() 方法运行线程。

package com.tutorialspoint;

class AdminThread extends Thread {

   AdminThread() {
      setDaemon(false);
   }

   public void run() {
      boolean d = isDaemon();
      System.out.println("daemon = " + d);
   }
}

public class ThreadDemo {

   public static void main(String[] args) throws Exception {
    
      Thread thread = new AdminThread();
      System.out.println("thread = " + thread.currentThread());
      thread.setDaemon(true);
   
      // this will call run() method
      thread.start();
   }
} 

输出

让我们编译并运行上面的程序,这将产生以下结果:

thread = Thread[main,5,main]
java_lang_thread.htm
广告