โ Back to Polymorphism
Question 582
Override a Virtual Property
Override a Virtual Property
Properties can bevirtualand overridden just like methods. TheVehicleclass has avirtualpropertyWheelswhose getter returns4. OverrideWheelsinMotorcycleso its getter returns2. Do NOT write aMainmethod. The tester stores aMotorcyclein aVehiclevariable and printsWheels, so the program prints: 2
Expected Output:
2
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.