+ 2
Explain the use of 'finally','final' and 'finalize' keyword in java.
2 Respuestas
+ 10
Finally - keyword used after try catch blocks, is executed always
Final - keyword used to say that the variable cannot be changed, its value is final
Finalize - method called when an object is about to get garbage collected