public void testFinally(){
System.out.println(setOne().toString());

}

protected StringBuilder setOne(){
StringBuilder builder=new StringBuilder();
try{
builder.append("Cool");
return builder.append("Return");
}finally{
builder=null; /* ;) */
}
}

why output is CoolReturn, not null?

Regards,
Mahendra Athneria

link|improve this question

67% accept rate
feedback

2 Answers

up vote 9 down vote accepted

The expression is evaluated to a value in the return statement, and that's the value which will be returned. The finally block is executed after the expression evaluation part of the return statement.

Of course, the finally block could modify the contents of the object referred to by the return value - for example:

finally {
  builder.append(" I get the last laugh!");
}

in which case the console output would be "CoolReturn I get the last laugh!" - but it can't change the value which is actually returned.

link|improve this answer
@Jon, but why does builder.append("some value"); modify the actual returned value while builder = null not? – Darin Dimitrov Jan 7 '11 at 13:03
1  
@Darin: Because builder is a reference. Setting a reference to null unsets said reference, but the object it referenced still exists until it is garbage collected. append, on the other hand, modifies the object (or one of its properties) – Powerlord Jan 7 '11 at 13:05
2  
@Darin: append method returns link to the variable on which it was called. So return builder.append("some value"); actually appends "some value" to the builder and returns link to builder as object, which you change in finally block. When you write builder = null you just change where builder points, but not value which was located under old link. – Maxym Jan 7 '11 at 13:07
@R. Bemrose, @Maxym, excellent explanation. Thank you. – Darin Dimitrov Jan 7 '11 at 13:08
@Darin Glad that it helps! – Maxym Jan 7 '11 at 13:10
show 6 more comments
feedback

The finally block is used for "cleanup", after the execution of the try block. As you returned the reference already, you can not change it in this way.

link|improve this answer
I think that's slightly misleading - if the finally block throws an exception, for example, that will still end up being thrown. I think it's clearer to separate out the evaluation of the return value (which occurs before the finally block) and the transfer of control out of the method back to the caller (which occurs after the finally block). – Jon Skeet Jan 7 '11 at 13:00
you are right, I will change my wording. But your answer is good anyway ;-) – morja Jan 7 '11 at 13:02
feedback

Your Answer

 
or
required, but never shown

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