what is the purpose of the final in the try-catch-final
Answers were Sorted based on User's Feedback
Answer / vikas
final- declares a constant
finally- handles exceptions
finalize- helps in Garbage collection
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / srinivasa
Finally is a block where we can write the code to free up
the resources like File closing,socket obj closing .
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / ramakrishna challapalli
finally is an optional one its not a mandatory statement
after try-catch blocks
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / guest
finally will execute after catch block if try throw
exception else it will execute after try.
ex:
class a
{
public static void main(String []asd)
{
try
{
throw new Exception();
}catch(Exception e)
{
System.out.println("catch");
}
finally{
System.out.println("finally");
}
}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / maha
That's not final,that one is finally, which is followed
after the try-catch block,It helps "garbage collection".
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / srinivas
After executing try catch statements last statement is
finally it must execute in at anycase
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / madhu
yes it correct it is finally,the use of finally is,if we
did not catch the exception in try/catch block also finnaly
will catch.
| Is This Answer Correct ? | 1 Yes | 6 No |
How to sort elements in a parallel array in java?
What are keywords in programming?
what is the difference between statis block and static variable
Why do we need strings in java?
What is classpath?
Is java an open source?
What is the difference between a method and a function in alice?
Why we use multi threading instead of multiprocessing?
What are the characteristics of Final,Finally and Finalize keywords.
What is a resource leak ?
How many bits is a float?
Explain what pure virtual function is?