vote up 10 vote down star
2

Is there any condition where finally might not run in java? Thanks.

flag

Is this a question you might get asked when trying to get a job with a certain well known company? – Tom Hawtin - tackline Jan 21 at 13:41

6 Answers

vote up 32 vote down check

from the Sun Tutorials

Note: If the JVM exits while the try or catch code is being executed, then the finally block will not execute. Likewise, if the thread executing the try or catch code is interrupted or killed, the finally block will not execute even though the application as a whole continues.

I don't know of any other ways the finally block wouldn't execute...

link|flag
@dhiller - I'm pretty sure that "power down" is included in "If the JVM exits..." :-p – Jason Coco Jan 21 at 7:24
vote up 15 vote down

System.exit shuts down the Virtual Machine.

Terminates the currently running Java Virtual Machine. The argument serves as a status code; by convention, a nonzero status code indicates abnormal termination.

This method calls the exit method in class Runtime. This method never returns normally.

	try {
		System.out.println("hello");
		System.exit(0);
	}
	finally {
		System.out.println("bye");
	} // try-finally

"bye" does not print out in above code.

link|flag
vote up 9 vote down

A non-programmatic way...pull the plug!

link|flag
thedailywtf.com/Articles/My-Tales.aspx Finally! – Spoike Jan 21 at 13:50
vote up 7 vote down

Just to expand on what others have said, anything that does not cause something like the JVM exiting will incur the finally block. So the following method:

public static int Stupid() {
  try {
    return 0;
  }
  finally {
    return 1;
  }
}

will strangely both compile and return 1.

link|flag
this really confused me for a good couple of hours a few weeks back. – nickf Jan 21 at 5:56
It's considered a bad idea to return a value from a finally block. Either return only from the try block, or return from outside the try/finally block. Most IDEs will mark this with a warning. – Ran Biron Jan 21 at 5:59
Also why it's a good idea to javac -Xlint (like cc -Wall -Wextra) – Jason Coco Jan 21 at 7:26
vote up 3 vote down

Related to System.exit, there are also certain types of catastrophic failure where a finally block may not execute. If the JVM runs out of memory entirely, it may just exit without catch or finally happening.

Specifically, I remember a project where we foolishly tried to use

catch (OutOfMemoryError oome) {
    // do stuff
}

This didn't work because the JVM had no memory left for executing the catch block.

link|flag
When OutOfMemoryError is thrown there is usually lots of memory left (to stop GC thrashing). However, if you catch it repeatedly you obviously will get back to GC thrashing. – Tom Hawtin - tackline Jan 21 at 13:44
vote up 2 vote down
try { for (;;); } finally { System.err.println("?"); }

In that case the finally will not execute (unless the deprecated Thread.stop is called, or an equivalent, say, through a tools interface).

link|flag

Your Answer

Get an OpenID
or

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