CJCoding With Joseph

Call Base Method With base

The virtual method Log() in Logger prints Base log. Override Log() in FileLogger so it FIRST calls the base implementation with base.Log(), then prints File log. Do NOT write a Main method.

When the tester calls Log() on a FileLogger, the program prints:
Base log
File log

Expected Output:

Base log
File log
Topics:
Inheritance
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.