Basically I am working on a project where certain class attributes and names of classes are stored in a text file. The goal here is to create a list of the objects of a certain data type (in this case Car) listed in the text file (of which I have already done), and then assign these to the data types within the text file. Below is an example of a text file that I would work with:
Car: 2
4 1 1 Red 3 80.5 20 60 2 aadawd
1 3 2 Blue 3 80 30 20 1 aaxzd
Bike: 3
2 1
2 2
2 3
Basically, 'Car: 2' indicates that we have 2 cars. The two lines below it indicate the attributes of the respective cars. To not waste time on unnecessary information I'll just list the data types of the lines below Car: <int, int, int, String, int, double, double, double, int, char[]>
Getters/setters are already established for the Car classes.
So far, I converted the file into an ArrayList called list, where each line of the file represents is an element of the array. This allowed me to create an ArrayList of type Car quite easily. All I need now is to set the attributes of the Car. Any thoughts?
for (int i = 0; i < list.size(); i++) {
if (list.get(i).contains("Red")) {
carList.add(new RedCar());
} else if (list.get(i).contains("Blue")) {
carList.add(new BlueCar());
} else if (list.get(i).contains("Yellow")) {
carList.add(new YellowCar());
}
}
spacethen you can add those in setters of your cars