Question d’entretien chez Bloomberg

Difference between final and finally in java.

Réponse à la question d'entretien

Utilisateur anonyme

15 oct. 2010

final is for variables that cannot be changed once declared. finally is for a block of code that will be executed no matter what.

1