CJCoding With Joseph

Hide a Method with new

The new keyword HIDES an inherited method instead of overriding it. With hiding, the reference type (not the object type) decides which method runs. Base has a plain method Show() returning Base. In Derived, hide it using new so it returns Derived. Do NOT write a Main method.

The tester calls Show() through a Derived variable and then through a Base variable pointing to the same object, so the program prints:
Derived
Base

Expected Output:

Derived
Base
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.