final: final is a keyword, final can be variable, method or class.You, can't change the
value of final variable, can't override a final method, can't inherit final class.
finally: finally block is used in exception handling. finally block is always executed.
finalize(): finalize() method is used in garbage collection.finalize() method is invoked just before the object is garbage collected.The finalize() method can be used to perform any cleanup processing.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
final: final is a keyword, final can be variable, method or class.You, can't change the
value of final variable, can't override a final method, can't inherit final class.