employer cover photo
employer logo
employer logo

V-Soft Consulting Group

Is this your company?

V-Soft Consulting Group Interview Question

Diferrence between final, finally and finalize in Java

Interview Answer

Anonymous

Sep 18, 2015

final is a modifier used to describe variable, method and class. finally is used in try catch block to execute every time whether the exception is thrown or not. And finalize is used for a garbage collection.

1