Does the Thread still exist if the JVM crashes?

萝らか妹 提交于 2021-02-10 20:31:54

问题


I was asked this question during an interview, does anybody know?


回答1:


If JVM exits as a result of crash the thread will not exist anymore. If crash is some kind of out of memory or similar error, it may or may not exist depending on specific circumstances.




回答2:


If a thread is running the JVM has not crashed.

However, sometimes people incorrectly describe any exception being throw as a crash. If this is what the interviewer meant, I would say the thread is still running because the exception was caught and not rethrown.




回答3:


If the process that contains the JVM is closed, all its threads are closed as well. This is taken care of at the OS level, when the OS cleans up all the memory allocated to a given process.

I mention the process-level closure to distinguish it from other weird, unknown states that the JVM might happen into that leaves it running, but in an unknown state (maybe it's not actually doing anything, for example).

Similarly, if you kill the process, all the child threads will close, regardless of their type (daemon / non-daemon).




回答4:


Imagine you're the JVM. You walk out on to the road, not really looking where you are going and you have a fatal accident. An instant before the unfortunate happens, you had 30 things on your mind. Imagine those things on your mind as "threads"

When you're being swept up from the road, do you think you'll still be conscious and have all of those things on your mind?




回答5:


An execution instance of the JVM is a process.

Threads are a part of a process.

If the process is dead, everything that was a part of it is dead.

So, when your JVM crashes or has been terminated forcefully, all the threads created by it stop executing as well.

Moreover, the JVM terminates automatically when the only threads running inside it are daemon threads.



来源:https://stackoverflow.com/questions/7477803/does-the-thread-still-exist-if-the-jvm-crashes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!