vote up 41 vote down star
5

If I have a try/catch block with returns inside it, will the finally block be called?

For example:

try {  
    something();  
    return success;  
    }  
catch (Exception e) {   
    return failure;  
    }  
finally {  
    System.out.println "i don't know if this will get printed out."  
    }

I know I can just type this in an see what happens (which is what I'm about to do, actually) but when I googled for answers nothing came up, so I figured I'd throw this up as a question.

Thanks!

flag
10  
you took all that time to type that all out, but didn't wrap it in a main and run it? – John Gardner Sep 29 '08 at 5:34

12 Answers

vote up 3 vote down

I tried the above example with slight modification-

public static void main(String[] args) {

System.out.println(Test.test());

}

public static int test() {

int i = 0;
try {
  i=2;
  return i;
} finally {
  i = 12;
  System.out.println("finally trumps return.");
}

}

The above code outputs-

finally trumps return.

2

This is because when return i; is executed i has a value 2. After this the finally block is executed where 12 is assigned to i and then sys out is executed.

After executing finally block the try block returns 2, rather than returning i=12, because this return statement is not executed again.

If you will debug this code in Eclipse then you'll get a feeling that after executing Sys out of finally block the return statement of try block is executed again. But this is not the case. It simply returns the value 2.

link|flag
vote up 0 vote down

If we have following code

class Test {
public static void main(String args[]) { System.out.println(Test.test()); }

public static int test()
{
   int i=0;

    try {  
            return i;  
    }  
    finally {  
              i=12;
        System.out.println("finally trumps return.");
    }
}

}

It prints 0 as the value of i instead of 12.... can any body explain why it happens...?

link|flag
Can you include the statement where you print the value of i? – Ryan Guest Nov 10 '08 at 7:14
Assuming you print it in the caller, it happens because when you call return, i's value is 0. It gets copied to the return value location in the current runtime stack frame at that point. If you put "return i" after the i=12, you'd get 12. – Scott Stanchfield Apr 23 at 13:10
vote up 0 vote down

In addition to the point about return in finally replacing a return in the try block, the same is true of an exception. A finally block that throws an exception will replace a return or exception thrown from within the try block.

link|flag
vote up 9 vote down

A logical way to think about this is:

  1. Code placed in a finally block must be executed whatever occurs within the try block
  2. So if code in the try block tries to return a value or throw an exception the item is placed 'on the shelf' till the finally block can execute
  3. Because code in the finally block has (by definition) a high priority it can return or throw whatever it likes. In which case anything left 'on the shelf' is discarded.
  4. The only exception to this is if the VM shuts down completely during the try block e.g. by 'System.exit'
link|flag
vote up 6 vote down

Also a return in finally will throw away any exception. http://jamesjava.blogspot.com/2006/03/dont-return-in-finally-clause.html

link|flag
vote up 24 vote down

Also, although it's bad practice, if there is a return statement within the finally block, it will trump any other return from the regular block. That is, the following block would return false:

try { return true; } finally { return false; }

Same thing with throwing exceptions from the finally block.

link|flag
2  
This is a REALLY bad practice. See stackoverflow.com/questions/48088/… for more info about why it's bad. – John Meagher Sep 16 '08 at 2:47
Agreed. A return within finally{} ignores any exception thrown in try{}. Scary! – neu242 Oct 22 '08 at 7:12
vote up 1 vote down

The finally block is always executed unless there is abnormal program termination, either resulting from a JVM crash or from a call to System.exit(0).

On top of that, any value returned from within the finnally block will override the value returned prior to execution of the finally block, so be careful of checking all exit points when using try finally.

link|flag
vote up 0 vote down

That's actually true in any language...finally will always execute before a return statement, no matter where that return is in the method body. If that wasn't the case, the finally block wouldn't have much meaning.

link|flag
vote up 34 vote down

//proof code

class Test
{
    public static void main(String args[]) 
    { 
    	System.out.println(Test.test()); 
    }

    public static int test()
    {
    	try {  
            	return 0;  
    	}  
    	finally {  
    	    System.out.println("finally trumps return.");
    	}
    }
}

output:

finally trumps return. 
0
link|flag
vote up 2 vote down

Yes it will get called. That's the whole point of having a finally keyword. If jumping out of the try/catch block could just skip the finally block it was the same as putting the System.out.println outside the try/catch.

link|flag
vote up 3 vote down

finally is always executed unless there is abnormal program termination (like calling System.exit(0)..). so, you sysout will get printed

link|flag
vote up 51 vote down

finally will be called.

The only time finally won't be called is if you call System.exit() or if the JVM crashes first.

link|flag

Your Answer

Get an OpenID
or

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