โ Back to Polymorphism
Question 693
Chain to the Base Constructor
Chain to the Base Constructor
Vehiclehas a constructor that takes amakeand stores it inMake. Complete theCarconstructor so it forwardsmakeup to the baseVehicleconstructor using: base(...), then storesdoorsinDoors. The tester builds aCarand prints itsMakeon the first line and itsDoorson the second. Do NOT write aMainmethod. Fornew Car("Toyota", 4)the program prints: Toyota 4
Expected Output:
Toyota 4
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.