CJCoding With Joseph

Override a Void Method

Overriding also works for methods that return nothing. The Logger class has a virtual void Log(string) that prints LOG: <msg>. Override Log in ErrorLogger so it prints ERROR: <msg> instead. Do NOT write a Main method.

For the message disk full, the program prints:
ERROR: disk full

Expected Output:

ERROR: disk full
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.