If we write return statement in finally block will it works
fine or throws any error?
Answer Posted / avinash kumar
We can not write any type of return statement inside the
finally block...The reason behind it,finally is block
should have to execute in any case.Return statment is fine
when no exception is generated or generated exception is
properly catched,in these two cases control can easily go
back to caller of method or a method can able to return a
valid datatype..
But what happen when an exception is
generated and is not caught,in this case also finally block
will exectute.After the execution of finally block the
control should goto the Runtime environment,means control
should should go away from the execution.But keeping the
return statement inside finally block,in this case
execution plan force the runtime environment to give the
control to the caller of the method.
So for this reason we
can not put any type of return statement inside finally
block.Because complier checks all the possiblities....
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
How can I return string result from action in asp.net mvc?
What is .net architecture and framework?
How does the 'page lifecycle' of asp.net mvc works?
Explain the role of assembly in the .net framework.
What is the full form of sp?
How large is the .net framework 3.0? Does this change make the release larger?
what is dot net? what is use dot net? what is benifit of dot net?what is vb dot net? what is ado dot net? what is c#?
What are ajax helpers in asp.net mvc?
Explain the types of Scaffoldings.
How to change the action name in ASP.Net MVC?
Which filter executes first in an asp.net mvc application?
How does �side by side� work for the .net framework 3.0?
What is the use of razor view engine?
Is it possible to combine asp.net webforms and asp.mvc and develop a single web application?
What are the 3 main components of an asp.net mvc application?