Question: JAVA ...Define a constructor as indicated. Sample output for below program: Year: 0, VIN: -1 Year: 2009, VIN: 444555666 ....CODE BELOW // ===== Code from

JAVA ...Define a constructor as indicated. Sample output for below program:

Year: 0, VIN: -1 Year: 2009, VIN: 444555666 ....CODE BELOW 

// ===== Code from file CarRecord.java ===== public class CarRecord { private int yearMade; private int vehicleIdNum;

public void setYearMade(int originalYear) { yearMade = originalYear; }

public void setVehicleIdNum(int vehIdNum) { vehicleIdNum = vehIdNum; }

public void print() { System.out.println("Year: " + yearMade + ", VIN: " + vehicleIdNum); }

// FIXME: Write constructor, initialize year to 0, vehicle ID num to -1. //solution goes here// } // ===== end =====

// ===== Code from file CallCarRecord.java ===== public class CallCarRecord { public static void main (String [] args) { CarRecord familyCar = new CarRecord();

familyCar.print(); familyCar.setYearMade(2009); familyCar.setVehicleIdNum(444555666); familyCar.print();

} } // ===== end =====

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!