Q) difference between final, finally and finalize?
Answers
Answered by
0
Final class can't be inherited final method can't be overhidden and final variable value can't be changed. Finally is used to place important code , it will be excuted whether exception is handle or not. Finalize is used to perform clean processing just before is garbage collected
Answered by
1
Similar questions