โ Back to Inheritance
Question 524
Layered Descriptions
Layered Descriptions
Chain overrides across three levels usingbase.Vehicle.Describe()printsI am a vehicle. CreateCar : Vehiclethat overridesDescribe()to callbase.Describe()then printI am a car. CreateSportsCar : Carthat overridesDescribe()to callbase.Describe()then printI am a sports car. Do NOT write aMainmethod. When the tester callsDescribe()on aSportsCar, the program prints: I am a vehicle I am a car I am a sports car
Expected Output:
I am a vehicle I am a car I am a sports car
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.