Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Should method return object be modified in finally block or not? Is this a good approach or not? I am asking from design and good programming perspective point of view? My question should we do it not can we do it?

share|improve this question
7  
Please give us a little bit more context. – Dennis Nov 16 '11 at 13:46
Please explain more... – Kugathasan Abimaran Nov 16 '11 at 13:47
The language is so broken in this question, I cannot tell what is being asked. – Erick Robertson Nov 16 '11 at 13:50

closed as not a real question by EJP, Sai Kalyan Akshinthala, Book Of Zeus, Burkhard, Antony Vennard Jan 24 '12 at 12:27

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

As it is already discussed in Returning from Finally block in Java. Yes you can modify the return object in Finally block but, if no exception comes this will work.

share|improve this answer

There are no restrictions on what you can do in a finally block. Be aware that the code of a finally block executes outside the try/catch mechanism, so any exceptions thrown there will not be caught by the associated catch block(s).

The real question you need to ask is whether the logic of your method requires that the return value be modified in the finally block. The logic needs to take into account that the finally block is executed even if the try block throws an exception -- even an exception not caught by any catch block.

EDIT: After re-reading your question, I'm wondering if you are asking if the value being returned can be modified. There is actually no way to access the value being returned (whether an object reference or a primitive) from within a finally block. So if that's what you mean, then the answer is "no".

share|improve this answer
Can you provide an example of when a method would require modifying the return value in a finally block? – Andy Thomas-Cramer Nov 16 '11 at 13:55
@AndyThomas-Cramer - No. That's kind of what I was hinting at. I don't see a need for what OP was asking for (if I understand the original question correctly). – Ted Hopp Nov 16 '11 at 14:29

It is legal and harmless to modify the return value (a reference) in a finally block, but unnecessary.

A finally block executes whether the method exits normally or an exception is thrown.

If an exception is thrown out of the method, nothing is returned. Modifying a local variable that would be returned in normal flow of control is irrelevant.

share|improve this answer
If there's an uncaught exception, then there is no method return value at all. – Ted Hopp Nov 16 '11 at 13:56
Right, meant to refer to the variable holding onto the intended return value should the method exit normally. I'll clarify – Andy Thomas-Cramer Nov 16 '11 at 14:01

No.

The finally block will always be executed, but the code after the finally block might not, depending on whether you throw another exception or return from within the catch() block. If you return inside the catch block, modifying a local value that is later to be returned from finally is redundant, as this value will never be returned.

Therefore, modifying a value that is later to be returned from a finally is not very efficient, as modifying it after the finally would have the same effect.

try { ... }
catch (...) { throw SomethingElseException() }
finally { returnValue = 1; }
return returnValue;

The above code will in every case be equivalent to the following in regards to what is returned.

try { ... }
catch (...) { throw SomethingElseException() }
returnValue = 1;
return returnValue;
share|improve this answer
That's not actually true. If you return in your catch block, the finally is still executed (see ideone.com/OAYpk) – Jeff Foster Nov 16 '11 at 13:51
@Jeff Yes, the finally block is executed, but the method won't return, so modifying return content makes no sense. – kba Nov 16 '11 at 13:52
A finally block is always executed (but perhaps not to completion, if it throws an exception itself). – Ted Hopp Nov 16 '11 at 13:53
You are misunderstanding. Yes, the finally block is ALWAYS being executed, but modifying a local variable that will not be returned doesn't matter. – kba Nov 16 '11 at 13:55
@KristianAntonsen, I see, thanks for clarifying! – Jeff Foster Nov 16 '11 at 13:55
show 1 more comment

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