Bloomberg Interview Question

Difference between final and finally in java.

Interview Answer

Anonymous

Oct 15, 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