InterviewSolution
Saved Bookmarks
| 1. |
Define Destructor? |
|
Answer» Destructor is a method which is automatically CALLED when the OBJECT ismade ofscope or DESTROYED. Destructor NAME is ALSO same asclass name but with the tilde symbol before the name. Destructor is a method which is automatically called when the object ismade ofscope or destroyed. Destructor name is also same asclass name but with the tilde symbol before the name. |
|