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
Explain the advantage of packaging over xcopy in .net?
What is presentation framework?
What are advantages of Dependency Injection (DI) in ASP.Net MVC?
What you mean by routing in mvc?
How can we determine action invoked from HTTP GET or HTTP POST?
How does servicing work for the .net framework 3.0?
how can you enhance the performance of entity framework?
mention what is the difference between ado.net and classic ado?
sql related question (outer join, left, right etc) array vs hashtable CRL sqldatareader vs dataset what is WPF, WCF, compare to WinForms Webservices Asp.net MVC vs WebForms?
Why to use “{resource}.axd/{*pathinfo}” in routing in mvc?
What is a model in programming?
What is the difference between adding routes, to a webforms application and to an mvc application?
What is domain class model?
What is Differnce between html.action and ajax.action?
How to Redirect Tracing to a File