CJCoding With Joseph

Sealed Method Override

Base has a virtual method Info returning "base". Create Middle that inherits from Base and provides a sealed override of Info returning "middle", which stops any further class from overriding it. Then create Leaf that inherits from Middle and adds nothing. Do NOT write a Main method.

For a Leaf the program prints:

middle

Expected Output:

middle
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.