โ Back to Inheritance
Question 514
Pass Color To Base
Pass Color To Base
The base classWidgethas a constructor that takes a color and prints it.Buttoninherits fromWidget. Complete theButtonconstructor so it forwards itscolorparameter to the base constructor using: base(...). Do NOT write aMainmethod. When the tester creates aButtonwith colorred, the program prints: Color: red
Expected Output:
Color: red
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.