I have an assignment for my computer science 1 class and we are just learning object oriented programming. I have a class named Car and a seperate data file ill use file redirect for later when running. I am to "use a sentinel loop to read in the make, year, and price of each Car object, instantiate the object, and store it in the array carArr[] For example, if you create a car object assigned to a variable named car1, you can just do: carArr[i] = car1 where "i" is an int counter. Also, count the elements of the array as they are stored in an int variable like "i" or numCars" Here is my code so far
Scanner scan = new Scanner(System.in);
final int SIZE_ARR = 30;
Car [] carArr = new Car[SIZE_ARR];
int i = 0;
int numcars = 0;
String make = "";
int year = 0;
double price = 0.0;
final String SENT = "EndDatabase";
while (!scan.next().equals(SENT))
{
make = scan.next();
year = scan.nextInt();
price = scan.nextDouble();
Car car1 = new Car(make, year, price);
carArr[i] = car1;
i++;
numCars++;
}
My problem is how do I create a new Car object each time I go through the loop and read in new data that doesn't have the same name? Do they need to have different names? As is, Ill just I'll just be making a bunch of objects all named car1. I will eventually have to print out the database and them read in a new Car object as a search key. The key will then sequential search through the carArr array. Will the search get confused because every element in the array is filled with an object of the same name?
Also, when I go through to search the array and compare my stored objects to my search object do I just need to do
key.equals(carArr[i])
Will that compare the instance variables of each object to each other, because that's what I need it to do?
In my Car class, I am required to have an accessor method for my year, make, and price instance variables. Where would I need to use these? It also says I have to have a "mutator method called setPrice" and "an equals method". Any idea what they mean for me to do in those? Sorry for the length of this and the multiple questions. I am just trying to stay ahead of my workload and my teacher isn't answering emails. THANKS!
***EDIT************************* I figured it out. Thanks!