CJCoding With Joseph

Sealed Override

The base class Widget has a virtual method Draw. In the Button class, provide a sealed override of Draw that prints Draw button. The sealed keyword lets you override the method here while preventing any further subclass from overriding it again. Do NOT write a Main method.

The tester runs Widget w = new Button(); w.Draw(); and the program prints:
Draw button

Expected Output:

Draw button
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.