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 Posted / 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 |
Post New Answer View All Answers
What is lazy programming?
Is void a keyword in java?
What is jee6?
what is an objects lock and which objects have locks? : Java thread
Why spring singleton is not thread safe?
How can I become a good programmer?
What are the elements of java?
What will happen if non-synchronized method calls a static synchronized method and what kind of lock it acquires?
In a program, initializing an array of 100 KB is throwing an out of memory exception while there is 100 MB of memory available. Why?
Which category the java thread do fall in?
What causes memory leaks in java?
How many bytes is double?
Is java a super set of javascript?
What is an error in java?
Why vector class is used?