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 |
What is a numeric format?
Which are thin and thicK wrapper Class's in Java?
What is Garbage Collection in Java
How could Java classes direct program messages to the system console, but error messages, say to a file?
Are generics important java?
What classes can be used to store arbitrary number of objects ?
What does exp mean in math?
Is void a keyword in java?
What are recursive functions? Give some examples?
0 Answers Axtria, ITC Indian Tobacco Company,
What is the difference between serializable and externalizable interfaces?
what do you meant by Platform-Independent?
how do I create a runnable with inheritance? : Java thread