我正在遍历一个列表并将其内容放在地图上但问题是,当我返回该地图时,我正在考虑异常,请你告诉它背后的原因是什么。我正在获取java。 lang.IndexOutOfBoundsException:索引:100,大小:100,因为我的列表大小是100
for(Map.Entry<Long, Integer> entries : result.entrySet()) {
pairList.add(new Pair(entries.getKey(), entries.getValue()));
}
int sum = 0;
int min = -1;
int max = -1;
int i = 0;
Pair p = pairList.get(i);
@SuppressWarnings("rawtypes")
//Iterator iterator = pairList.iterator();
Iterator iterator = pairList.listIterator();
while (iterator.hasNext()) {
if(sum == 0){
min = (int) p.key;
max = (int) p.key;
}
sum += p.value;
if(sum < BARRIER) {
max = (int) p.key;
} else {
if(sum > BARRIER) {
i--;
} else {
max = (int) p.key;
}
System.out.println(min+"_"+max);
result1.put(min,max);
sum = 0;
}
i++;
p = pairList.get(i);
}
System.out.println("#########");
System.out.println(result1.size());
for (Map.Entry<Integer, Integer> entry : result1.entrySet()) {
System.out.println(entry.getKey() + "/" + entry.getValue());
}
伙计们请告知如何克服这个
答案 0 :(得分:0)
数组是零索引的。例如100个元素的数组实际上具有[0,99]的有效索引范围。我假设在p = pairList.get(i);
你需要实现一些逻辑,以确保你没有超越边界。你已经在使用迭代器迭代pairList
了,这可以保护你免受这种情况的影响,但你也混入了索引i
,这违背了迭代器的目的。
至少在尝试访问元素之前包含一个检查。类似的东西:
if (i >= pairList.size())
break;
答案 1 :(得分:0)
你的问题在这里:
p = pairList.get(i);
如果您的列表大小为100,则允许的索引介于0到99之间。