Does an OutOfMemoryError cause a spawned thread to die?

As in will it exit from run()?

link|improve this question

possible duplicate of Behavior of a java process in case of OutOfMemoryError – Joachim Sauer Oct 19 '11 at 12:02
feedback

4 Answers

up vote 1 down vote accepted

It depends, whether the Error was thrown within the thread or within another thread. Please observe the behaviour of the following Snippet:

public class Test implements Runnable {

    public void run() {
        while (true) {
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
            }
            System.out.println("alive");
        }
    }



    public static void main(String[] args) {
        new Thread(new Test()).start();
        throw new OutOfMemoryError();
    }
}

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.

link|improve this answer
In what case will run() die off, before main() dies? – Chin Boon Oct 17 '11 at 8:51
An exception or error will kill the thread, executing the statement which lead to the error or exception. That is, run() will die, if the memory allocation leading to the oome occured in the spawned thread and main() will die if the allocation happened there – Jonathan Oct 17 '11 at 19:07
@Jonathan: yes, but in the specific case of the OOM, it's very hard to reliably predict which thread "cause" the OOM. If Thread 1 allocated many, many megabytes of object right up until the possible value and then Thread 2 tries to allocate a few small objects, it's entirely possible that Thread 2 "gets" the OOM, even 'though (arguably) Thread 1 "caused" it. – Joachim Sauer Oct 19 '11 at 12:03
feedback

If it's not caught, any Throwable will cause the thread to terminate. Errors generally aren't (and shouldn't be) caught.

link|improve this answer
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.

link|improve this answer
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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.