โ Back to Inheritance
Question 521
Hide Method With new
Hide Method With new
Sometimes a derived class replaces a NON-virtual base method by hiding it with thenewkeyword.Printerhas a plainPrint()that printsBase print. Add aPrint()method toColorPrinterusingnewso that it printsColor print. Do NOT write aMainmethod. When the tester callsPrint()on aColorPrinterreference, the program prints: Color print
Expected Output:
Color print
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.