Answer Posted / sumesh babu r
The finally method will be executed after a try or catch
execution.
It is mainly used to free up resources.
The codes that must be executed, irrespective of whether the
exception is occurred or not, will be included in the
finally block.
See the following simple example to demonstrate the syntax
public class FinallyExample
{
public static void main(String args[])
{
try
{
// the code that may cause an exception
}
catch (Exception e)
{
// the code to be executed, when the exception
occurs
}
finally
{
// code to be executed irrespective of the
occurrence of exception
}
}
}
When using finally, the catch block is not mandatory.
ie, a try block must be followed by a catch or finally block.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain about arraylist?
Can constructor be inherited?
What's a method in programming?
What is literal example?
What is difference between jdk,jre and jvm?
Outline the major features of java.
Which oo concept is achieved by using overloading and overriding?
Explain the difference between comparator and comparable in java?
Which one of the following suits the description of a string better: derived or primitive?
how to write a program for sending mails between client and server
How is it possible for two string objects with identical values not to be equal under the == operator?
How do you make a thread in java?
What do you mean by flow of struts?
When does an object becomes eligible for garbage collection in java?
Why is it called buffering?