InterviewSolution
Saved Bookmarks
| 1. |
What is finalize() function in Java? |
|
Answer» This is a good question concerning core java INTERVIEW QUESTIONS for experienced professionals. FINALIZE method is CALLED by the Garbage Collector before performing the clean-up activity. Clean-up activity refers to the process of de-allocating all the resources, such as database connection and NETWORK connection, associated with an object. |
|