gpt4 book ai didi

java守护线程和非守护线程

转载 作者:搜寻专家 更新时间:2023-11-01 01:43:37 25 4
gpt4 key购买 nike

我正在做 java 过去的试卷,我遇到了以下让我感到困惑的问题。

Which of the following are true? (Choose all that apply.)

一个。当应用程序开始运行时,有一个守护线程,其工作是执行 main()。

B.当应用程序开始运行时,有一个非守护线程,其工作是执行 main()。

C.由守护线程创建的线程最初也是守护线程。

D.由非守护线程创建的线程最初也是非守护线程。

关键答案是 B,C,D,谁能告诉我为什么 B,C 是正确的?非常感谢。

最佳答案

A. When an application begins running, there is one daemon thread, whose job is to execute main().

这是不正确的。见下文。

B. When an application begins running, there is one non-daemon thread, whose job is to execute main().

正确。当最后一个非守护线程退出时,JVM 退出。如果主线程不是非守护线程,那么 JVM 将启动并发现没有非守护线程在运行并立即关闭。

因此主线程必须是非守护线程。有关守护程序和非守护程序之间差异的描述,请在此处查看我的回答:Difference between a daemon thread and a low priority thread

C. A thread created by a daemon thread is initially also a daemon thread.

D. A thread created by a non-daemon thread is initially also a non-daemon thread.

两者都是正确的。默认情况下,线程从生成它的线程获取其守护进程状态。守护线程产生其他守护线程。非守护线程产生其他非守护线程。查看 Thread.init() 中的代码:

Thread parent = currentThread();
...
this.daemon = parent.isDaemon();

如果你想改变守护进程的状态,那么你必须在线程启动之前这样做。

Thread thread = new Thread(...);
// thread has the daemon status of the current thread
// so we have to override it if we want to change that
thread.setDaemon(true);
// we need to set the daemon status _before_ the thread starts
thread.start();

关于java守护线程和非守护线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19505682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com