CJCoding With Joseph

Override a Virtual Property

Properties can be virtual and overridden just like methods. The Vehicle class has a virtual property Wheels whose getter returns 4. Override Wheels in Motorcycle so its getter returns 2. Do NOT write a Main method.

The tester stores a Motorcycle in a Vehicle variable and prints Wheels, 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.