Diferrence between final, finally and finalize in Java
Anónimo
final is a modifier used to describe variable, method and class. finally is used in try catch block to execute every time whether the exception is thrown or not. And finalize is used for a garbage collection.