在Java中,我创建了一个2D数组,该数组已初始化为一个剧院,该剧院有15行,每行10个席位:
Place[][] room = new Plaats[15][10];
现在,我想遍历该数组并返回对象Plaats来调用其上的方法。
private Place getPlaatObject(int rownumber, int seatnumber) {
Place places;
for (int row = 1; row < room.length; row++) { // loop by the rows
for (int seat = 1; seat < room[row].length; seat++) { // loop by the seats
return places;
}
}
}
如何退还物品?