Amazon Interview Question

What is the different between final, finalize, and finally.

Interview Answer

Anonymous

Mar 23, 2011

These are java keywords: final refers to a constant declaration, finally is a block which is always executed and finalize() is an overridable method which is executed before the garbage collector frees the object, which is not determinate as to when.

2