Why Do We Use finalize Method in Java ?

Java provides finalize() method to perform any cleanup before Garbage Collection. This method is in Object class, and it is invoked by JVM internally. Developers are free to implement this method for any custom cleanup in case of Garbage Collection.

If an Object is not Garbage Collected, then this method may not be called.

This method is never invoked more than once by JVM.



You May Interest

How Does Web Module Work in Spring Framework ?

How Can We Analyze the Dependencies in Java Classes and Packages ...

What are the Main Uses of Singleton Design Pattern in Java ?

Why Do We Use Static Initializers in Java ?

What are the Different Types of Classloaders in Java ?