what are the rules to use try catch finally?
Answer Posted / naveen
Rules to using try catch finally blocks.
First thing is try,catch and finally blocks are used in
Exception Handling.In try block we are write Exception
rising code in catch block using exception handling code and
finally block is used to releasing the resource. try and
catch blocks are executed are not finally block is executed.
we are using this combination
try{
//Exception rising Code
}catch(Exception e){
}finally{
//releasing the resource
}
2)
try{
//Exception rising Code
}catch(Exception e){
}
3)try{
//Exception rising Code
}finally{
//releasing the resource
}
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is class array in java?
How does varargs work in java?
What exactly is methodology?
What is the base class of all exception classes in java?
What are the advantages of arraylist over arrays?
How destructors are defined in java?
How to make a read-only class in java?
How listener identify that the event came from a particular object?
What is an 8 bit word?
What is java beans?
Can we use string in switch case in java?
Explain the usage of this with constructors?
What is the difference between choice and list?
What is the mapping mechanism used by java to identify IDL language?
Can we create object of static class?