CJCoding With Joseph

Template Method Calls a Virtual

A non-virtual base method can call a virtual method, and overriding that virtual changes the base method's behavior. The Report class has a Build() method that wraps a Body() between a header and footer, and Body() is virtual returning Empty. Override Body() in SalesReport so it returns Sales data. Do NOT write a Main method.

The program prints:
Header
Sales data
Footer

Expected Output:

Header
Sales data
Footer
Topics:
Polymorphism
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.