我读了这个声明:
主线程必须是完成执行的最后一个线程.当主线程停止时,程序终止.
The main thread must be the last thread to finish execution. When the main thread stops, the program terminates.
是真的吗?
我也开始知道即使主线程死了,程序也会继续运行".
I also came to know "Even if the main thread dies, the program keeps running".
这是我目前的理解:
main
方法.哪一个是真的?
当所有非守护线程都死掉时程序终止(守护线程是用 setDaemon(true)
标记的线程;通常是用于实用程序线程).来自文档:
The program terminates when all non-daemon threads die (a daemon thread is a thread marked with setDaemon(true)
; it's usually used for utility threads). From the documentation:
当 Java 虚拟机启动时,通常有一个非守护线程(通常调用某个指定类的名为 main 的方法).Java 虚拟机继续执行线程,直到发生以下任一情况:
When a Java Virtual Machine starts up, there is usually a single non-daemon thread (which typically calls the method named main of some designated class). The Java Virtual Machine continues to execute threads until either of the following occurs:
这篇关于Java中的主线程什么时候停止?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!