Question: Develop a Java class called Car.java and a Java test class called CarTest.java Create a default constructor and one other constructor and use the private
Develop a Java class called Car.java and a Java test class called CarTest.java Create a default constructor and one other constructor and use the private data attributes below in your classes. Develop the setter and getter methods for the Car.java class and develop a computational method to compute the driving range of the cars.
public double computeDrivingRange (float gallons, float mpg) { return etc. etc. }
private String carName; // Name of the Car such as Ford private String color; // Color of the Car such as Blue private String year; // Model year of the car such as 2017 private float capacity; // Fuel capacity in gallons such as 18 private float mpg; // Miles per gallon such as 25 Create two Car objects in the test class CarTest.java and compute and display the results in a JOptionPane window.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
