Behaviour of return statement in catch and finally

JavaTry Catch-Finally

Java Problem Overview


Please see the following code and explain the output behavior.

public class MyFinalTest {
     
    public int doMethod(){
        try{
            throw new Exception();
        }
        catch(Exception ex){
            return 5;
        }
        finally{
            return 10;
        }
    }
    
    public static void main(String[] args) {

        MyFinalTest testEx = new MyFinalTest();
        int rVal = testEx.doMethod();
        System.out.println("The return Val : "+rVal);
    }

}

The result is the return Val : 10.

Eclipse shows a warning: finally block does not complete normally.

What happens to the return statement in catch block ?

Java Solutions


Solution 1 - Java

It is overridden by the one in finally, because finally is executed after everything else.

That's why, a rule of thumb - never return from finally. Eclipse, for example, shows a warnings for that snippet: "finally block does not complete normally"

Solution 2 - Java

finally is always executed (the only exception is System.exit()). You can think of this behavior this way:

  1. An exception is thrown
  2. Exception is caught and return value is set to 5
  3. Finally block gets executed and return value is set to 10
  4. The function returns

Solution 3 - Java

This is an easy question if you remember the low level layout of the VM.

  1. The return value is put up the stack by the catch code.
  2. Afterwards, the finally code is executed and overwrites the value on the stack.
  3. Then, the method returns with the most up to date value (10) to be used by the caller.

If unsure about things like this, fall back to your understanding of the underlying system (ultimately going to assembler level).

(funny sidenote)

Solution 4 - Java

enter image description here

Finally block always get executed unless and until System.exit() statement is first in finally block.

So here in above example Exection is thrown by try statement and gets catch in catch block. There is return statement with value 5 so in stack call value 5 gets added later on finally block executed and latest return value gets added on top of the stack while returning value, stack return latest value as per stack behavior "LAST IN FIRST OUT" so It will return value as 10.

Solution 5 - Java

The finally block is always executed (if the matching try was executed) so before the method returns 5 as in the catch block, it executes the finally block and returns 10.

Solution 6 - Java

In a nut shell, we could say finally block dominates return statement, irrespective of, if return present in try or catch block.

Always finally dominates in that use case.

public static int m1() {
	try {
		return 100;
	} 
	catch(Exception e)
	{
		return 101;
	}
	finally {
		return 102;
	}
}

Output - 102

Solution 7 - Java

finally block will always execute (only exception is it encounters System.exit() anywhere before it), so simply the 5 is replaced (overridden) by 10 before returning by finally block

Solution 8 - Java

the finally section will execute always execute. e.g. if you have any thing to release, or log out sort of thing, if error occur then go to catch section else finally will execute.

Session session //  opened some session 
try 
{
 // some error 
}
catch { log.error }
finally 
{ session.logout();}

it should not used to return anything. you can use outside of.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAmmuView Question on Stackoverflow
Solution 1 - JavaBozhoView Answer on Stackoverflow
Solution 2 - JavaVladimir IvanovView Answer on Stackoverflow
Solution 3 - JavamafuView Answer on Stackoverflow
Solution 4 - JavaAvinash PandeView Answer on Stackoverflow
Solution 5 - JavaMByDView Answer on Stackoverflow
Solution 6 - JavaKmsView Answer on Stackoverflow
Solution 7 - JavairfanView Answer on Stackoverflow
Solution 8 - JavaVikaaa..View Answer on Stackoverflow