โ Back to Polymorphism
Question 559
Sealed Override
Sealed Override
The base classWidgethas avirtualmethodDraw. In theButtonclass, provide asealed overrideofDrawthat printsDraw button. Thesealedkeyword lets you override the method here while preventing any further subclass from overriding it again. Do NOT write aMainmethod. The tester runsWidget 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.