โ Back to Polymorphism
Question 558
Call Base Method in Override
Call Base Method in Override
The base classLoggerhas avirtualmethodLogthat printsBase log. OverrideLoginFileLoggerso it FIRST calls the base version withbase.Log()and THEN printsFile log. Do NOT write aMainmethod. When the tester callsLog()on aFileLoggerthe 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.