Sollicitatievraag bij V-Soft Consulting Group

Diferrence between final, finally and finalize in Java

Antwoord op sollicitatievraag

Anoniem

18 sep 2015

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.

1