Question: Define a Java class named Bike that has the following 1. Four properly encapsulated variables: brand of type String, type of type String, size of

Define a Java class named Bike that has the following 1. Four properly encapsulated variables: brand of type String, type of type String, size of type int, and price of type double 2. A no-arg constructor that sets brand to Specialized', type to "road bike", size to 560, and price to 1500. 3. A constructor that takes four parameters and sets the four instance variables accordingly. 4. A getter and a setter method for the instance variable price. 5. An instance method named toString that does not take any parameter and returns a value of type Stringi The returned value contains the four instance variables of this object in a format of your choice
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
