- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在做 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/
一 点睛 线程可以设置为守护线程,ThreadGroup 也可以设置为守护 ThreadGroup,但是若将一个 ThreadGroup 设置为 deamon,也并不会影响线程的 daemon 属性,
我有一个 python 脚本需要在启动时作为守护进程运行。进程从 tty(和 pdb)分离,但代码不运行。 我已经将它缩小到一个最小的例子 import daemon from time import
reactjs isMounted API 的文档提到: You can use this method to guard asynchronous calls to setState() or fo
我正在开发一个需要嵌入 HTTP 服务器的守护进程。我正在尝试使用 BaseHTTPServer 来完成它,当我在前台运行它时,它工作正常,但是当我尝试将守护进程 fork 到后台时,它停止工作。我的
我正在尝试使用 Apache Commons Daemon 使用 Daemon 接口(interface)来守护我的应用程序。 Java 应用程序本身不执行任何操作,只是写入 stout。 我编译了j
我正在使用 Bootle Python Web Framework 在 Ubuntu 上开发网络应用程序。是否有任何有效的方法来守护启动默认 bottlepy 网络服务器的脚本? 谢谢。 UPD:现在
我一直使用 bluepill成功地守护简单的 Ruby 脚本。然而这一次,我有一个脚本,它也在加载 Rails 环境,因此我可以访问 Rails 应用程序及其各自模型的数据库连接。我使用的 bluep
我试图守护一些代码,但我遇到了一些麻烦。 如果我用 tklogger() 调用代码,它运行得很好。但是,如果我在守护程序上下文中调用它,我会得到以下跟踪信息: Traceback (most rece
我打算使用 systemd 将 celery 4.3.0 作为守护进程运行,但它给了我这个错误: 它会启动 worker 但会很快停止它们。但是,我可以通过键入以下命令手动运行工作人员: celery
我是一名优秀的程序员,十分优秀!