InterviewSolution
Saved Bookmarks
| 1. |
What is a destructor? Can it be overloaded? |
|
Answer» A destructor is the member function of the class which is having the same name as the class name and prefixed with tilde (~) symbol. It gets executed automatically w.r.t the object as soon as the object loses its scope. It cannot be overloaded and the only form is without the parameters. |
|