Does an OutOfMemoryError cause a spawned thread to die?
As in will it exit from run()?
|
Does an OutOfMemoryError cause a spawned thread to die? As in will it exit from run()?
| ||||
feedback
|
|
It depends, whether the Error was thrown within the thread or within another thread. Please observe the behaviour of the following Snippet:
You can easily see, the spawned thread is still alive, although the main thread will die instantly after the Error is thrown. There is, however, no guarantee at all, which thread will finally throw the error. | |||||||
feedback
|
|
If it's not caught, any Throwable will cause the thread to terminate. Errors generally aren't (and shouldn't be) caught. | |||
|
feedback
|
|
An OutOfMemoryError sets the JavaVM in an undefined state. Running Threads do not get killed by rule, your Threads might still be running despite the one which had the Error (if you didn't catch it). But Threads still might die because of low memory (e.g. not enough room for their stack frame) but this depends on the room left. The JVM simply gets unstable. | |||
|
feedback
|
|
Your Threads may be kept in Running state forever as they wait for memory allocation from JVM but since JVM is in unstable condition nothing is allocated and the status-quo is maintained for infinite time! | |||
|
feedback
|