What is the difference between final, finally and finalized

Showing Answers 1 - 2 of 2 Answers

jagadish kumar ch.

  • Jul 13th, 2005
 

final is used for declaring a variable as a constant, final class can't be inherited, final methods cannot be overloaded but overridden 
 
finally statement should execute not depending upon an exception is catch or thrown 
 
finalize method is used for finalize the unreachable objects before garbage collection

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions