CJCoding With Joseph

Shadow A Method With new

Logger has a Log method returning "base log". In FileLogger, hide it with a new Log method (using the new keyword) that returns "file log". The tester calls Log through a FileLogger reference and then through a Logger reference. Do NOT write a Main method.

The program prints:

file log
base log

Expected Output:

file log
base 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.