InterviewSolution
Saved Bookmarks
| 1. |
Is deconstructor overloading possible? If yes then explain and if no then why? |
|
Answer» No destructor overloading is not POSSIBLE. Destructors TAKE no arguments, so there’s only one way to destroy an OBJECT. That’s the reason destructor overloading is not possible. |
|