Bloomberg interview question

Difference between final and finally in java.

Interview Answer

Anonymous

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