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

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

Year: 0, VIN: -1 Year: 2009, VIN: 444555666 
// ===== Code from file CarRecord.java ===== public class CarRecord { private int yearMade; private int vehicleIdNum; public void setYearMade(int originalYear) { yearMade = originalYear; return; } public void setVehicleIdNum(int vehIdNum) { vehicleIdNum = vehIdNum; return; } public void print() { System.out.println("Year: " + yearMade + ", VIN: " + vehicleIdNum); return; } // FIXME: Write constructor, initialize year to 0, vehicle ID num to -1. //your 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(); return; } } // ===== end ===== 
 
Please IN JAVA only comment with the //your solution goes here// part! thank you! 

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!