CJCoding With Joseph

Call Base Method in Override

The base class Logger has a virtual method Log that prints Base log. Override Log in FileLogger so it FIRST calls the base version with base.Log() and 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:
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.