CJCoding With Joseph

Virtual Destructor Cleanup

When you delete a derived object through a base pointer, the base destructor MUST be virtual so the derived destructor also runs.

Base class Resource has a destructor that prints "Base destroyed". Make that destructor virtual.
Derived class FileResource (already written) has a destructor that prints "Derived destroyed".

When a FileResource is deleted through a Resource*, 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.