Question
For the class Car consider the instance variables make, model, price and year, a constructor with arguments, the method toString and the setters and getters methods.
The class CarTest contains only the main method. In the main method define the following actions:
(1) Instantiate a Car object car1 by invoking the argument constructor (use argument values of your own) and display to the console the string representation of the object car1 using the method toString; (2) Ask the user to enter values for all instance variables and use the setter type methods to assign the entered values to the corresponding instance variables of the object car1. Display the string representation of the object car1 by invoking the toString method.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
public class Car {private String make, model;
private double price;
private int year;
public Car(String make, String model, double price, int year)
{
this.make = make;
this.model = model;
this.price = price;
this.year = year;
}
public String getMake()
{
return make;
}
public String getModel()...