โ Back to Inheritance
Question 436
Virtual Destructor Cleanup
Virtual Destructor Cleanup
When youdeletea derived object through a base pointer, the base destructor MUST bevirtualso the derived destructor also runs. Base classResourcehas a destructor that prints "Base destroyed". Make that destructorvirtual. Derived classFileResource(already written) has a destructor that prints "Derived destroyed". When aFileResourceis deleted through aResource*, destructors run derived-first, so the program prints exactly: Derived destroyed Base destroyed Do NOT write a main function.
Expected Output:
Derived destroyed Base destroyed
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.