Significance of Finalize method

Significance of Finalize method.

The Finalize method of an object is called when GC is about to clean up the object. We can keep clean up code in the finalize block.
What is an Object Serialization?
What is an Object Serialization? - It is the process of writing the contents of an object to a file and vice versa.....
Significance of "transient" keyword
Significance of transient keyword - The transient keyword is used within the object's member that need not be serialized...
What are inner classes?
What are inner classes? - Class that is nested within a class is called as inner class. The inner class can access private members...
Post your comment