java Api provided try catch finally ,try catch(its ok) but why try finally and exception occured at try then how the flow is?
Answer / vandana singh
If you want to do a task that must be perform with every situation when exception occurs or not. that you should write the code for this in finally block. cause finally block execute in both situation exception occurs or not.
if an exception occurs then catch block statements execute after that control transfer to finally block.
if any exception not occurs than control transfer to finally block.
| Is This Answer Correct ? | 26 Yes | 0 No |
Are primitives objects?
what is difference between length and length()?
What does main method?
How do I remove a character from a string in java?
How to optimize the javac output?
What is finally and finalize in java?
Is an object null?
Explain list interface?
What is the functionality of the stub?
explain Anonynous inner class?
What is the generic class?
What are the two major components of JDBC?