VISTEX
Company
Programming
Arrays
what is the difference between final, finally and finalize in Java?
Read Solution (Total 1)
-
- Final -> it is a keyword used for declaring class, method, variable. If it is declared for class it can't be inherited further, if it is declared for method can't be overridden, if is declared for variable it's value can't be changed
Finally -> it is a block used in exception handling
Finalize -> it is used for cleaning the objects by garbage collector in jvm - 8 years agoHelpfull: Yes(2) No(0)
VISTEX Other Question