有许多已解决的多维数组帖子,但我在尝试通过 for 循环创建一个时遇到了困难。
这是我正在尝试做的代码片段。
//Get a list of Person objects using a method
ArrayList<Person> people = getPeopleList();
//Create an array of 10 Objects with 4 values each
Object[][] data = new Object[10][4];
int count =1;
for(Person p: people)
{
//This wont compile. This line is trying to add each Object data with values
data[count-1][count-1] = {count, p.getName(), p.getAge(), p.getNationality()};
count++;
}
//I then can add this data to my JTable..
谁能告诉我如何使用 for 循环创建这个多维数组。我不想要一个 Person 多维数组。它需要是一个Object多维数组吗?谢谢