Question: I need help completing this. im not sure what I'm doing wrong or missing. X984: Object Oriented Design 2 For this question, you will be



I need help completing this. im not sure what I'm doing wrong or missing.
X984: Object Oriented Design 2 For this question, you will be working within the Person class. public class Person { public Car car; public Person (Car c) { this.car = c; } A Person has a field called car that refers to a Car object. public class Car { number of miles the car can go with a full tank private int totalMiles; W number of miles left before we need to get gas private int milesUntilGas; 8 // initially has a full tank of gas public Car (int miles) { this.totalMiles = miles; this.milesUntilGas = miles; } * Drivess car the car the specified number of miles. * We can't drive more miles than we have gas for. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 * @param miles, int number of miles to drive * @return true if car successfully drives, otherwise false * public boolean drive (int miles) { if (miles but was:
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
