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 |
what questions are been asked ??? for interview in apti
What is meant by vector class, dictionary class, hash table class, and property class?
Why ArrayList class is not a synchronized class and why it is not a thread safe class? explain
How much ram can a 64 bit processor theoretically?
Can anonymous class have constructor?
What are the different access modifiers available in java?
Explain aggregation in java?
what is check p object in java
how to transactions(Bank transactions) in business process in ejb?
How will you serialize a singleton class without violating singleton pattern?
What is a for loop in java?
How to add panel to a Frame?