InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of Finalize Method? |
|
Answer» Finalize method HELPS to perform CLEANUP OPERATIONS on the RESOURCES which are not currently used. Finalize method is protected , and it is ACCESSIBLE only through this class or by a derived class. Finalize method helps to perform cleanup operations on the resources which are not currently used. Finalize method is protected , and it is accessible only through this class or by a derived class. |
|