Question: Data structure Write an abstract class for Cycle. We could then make other classes, Unicylce, Bicycle, Tricycle. This is my blue bicycle, Lulu. There are
Data structure
Write an abstract class for Cycle.
We could then make other classes, Unicylce, Bicycle, Tricycle.
This is my blue bicycle, Lulu. There are are may types of cycles, road bicycles (Lulu), recumbent tricycles, etc.
- Ready to get rolling writing the abstract Cycle class?
- Declare properties numberOfTires and numberOfFlats.
- Declare 2 abstract methods ride and stop.
- Next write a non-abstract subclass Bicycle. This will extend Cycle.
- Notice will need to now implement (write the body) of the methods.
- Finally, we need a tester/driver to use our methods. It is the only class with the main.
- Include a comment on Big-O complexity in your driver.
You should make sure to use numberOfTires and numberOfFlats.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
