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?
|
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.
|
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. |
|||
|
|
|
There are no restrictions on what you can do in a The real question you need to ask is whether the logic of your method requires that the return value be modified in the 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 |
|||||
|
|
It is legal and harmless to modify the return value (a reference) in a A 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. |
|||||
|
|
No. The Therefore, modifying a value that is later to be returned from a
The above code will in every case be equivalent to the following in regards to what is returned.
|
|||||||||||
|