I try to create objects in a for loop like:
String[] empArr[] = {
{"Moe","Jude","Employee","2017"},
{"Noe","Joel","Employee","2019"},
{"Poe","Juce","Employee","2021"}
};
Employee[] emp;
emp = new Employee[empArr.length];
// get length and loop from empArr[], here there are 3 entries
for (int i=0; i<=empArr.length-1; i++) {
// get length and loop from empArr[i], here there are 4 entries
for (int j=0; j<=empArr[i].length-1; j++) {
// create objects in loop from empArr[i] with params from empArr[i][0 ]
emp[i] = new Employee(empArr[i][0],empArr[i][1],empArr[i][2],empArr[i][3]);
}
// create from a method the output and get here all firstNames from empArr[]
output(emp[i].getInfo("firstName"));
}
This is working and I get the output I want. But I use in the middle part at the moment:
for (int j=0; j<=empArr[i].length-1; j++) {
emp[i] = new Employee(empArr[i][0],empArr[i][1],empArr[i][2],empArr[i][3]);
}
Is there a possibility to make a loop of j for the arguments of the object too? Something like:
emp[i] = new Employee(
for (int j=0; j<=empArr[i].length-1; j++) {
empArr[i][j];
}
);
I tried this code above, but i cant get it working: I cant imagine a solution, hope for help
best regards
Unless I miss-read this post (which could be likely), you can do it this way. Read the comments in code:
The Employee Class (you didn't post yours):
The code to use the above Employee class:
Console Window should display: