这段代码是关于一个在一个寻找有任务的水站的环境中游荡的水罐车。
尝试通过要访问的点的ArrayList递增,但每次运行代码时,我都得到一个" IndexOutOfBoundsException"但在不同的索引和大小总是与索引相同,所以我很困惑。打破程序的索引/大小似乎随机变化。
示例错误: 线程" main"中的例外情况java.lang.IndexOutOfBoundsException:Index:5,Size:5
相关代码(假设它无限运行):
int stationIncrementer = 0;
ArrayList<Point> stationList = new ArrayList<Point>();
ArrayList<Point> wellList = new ArrayList<Point>();
Iterator it = stationList.iterator();
public Action senseAndAct(Cell[][] view, long timestep) {
// Loop to scan every cell in view for stations
int i = 0, j = 0;
for (i = 0; i < 25; i++) {
for (j = 0; j < 25; j++) {
Cell c = view[i][j];
if (view[i][j] instanceof Station) {
Task t = ((Station) c).getTask();
Point p = view[i][j].getPoint();
if (stationList.contains(p)) {
break;
} else if (t != null) {
stationList.add(p);
}
}
if (j == 25) {
j = 0;
}
}
}
if (it.hasNext() && stationList.get(stationIncrementer) != null && getWaterLevel() > 0
&& !(getCurrentCell(view) instanceof Station)) {
Point p = stationList.get(stationIncrementer);
stationIncrementer++;
return new MoveTowardsAction(p);
}
答案 0 :(得分:0)
你的条件如果(j == 25)永远不会执行,因为定义的循环条件是j <25,纠正它。