Java:判断当前线程是否守护线程

发布时间:2023年12月22日

代码示例:

package com.thb;

public class Test5 {

    public static void main(String[] args) {
        Thread thread = Thread.currentThread();
        System.out.println("is daemon: " +thread.isDaemon());
    }

}

运行输出:
在这里插入图片描述

文章来源:https://blog.csdn.net/panghuangang/article/details/135148653
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。