what is the difference between final and finally keywords in java ?
Utilisateur anonyme
final is used to create a constant variable or to prevent override method or prevent inheritance while finally is used in try-catch block and will be always executed whether there is an exception or not