作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试自己制作一个小游戏以适应 Java,但我只是遇到了 LinkedList Index 的问题。我找到了解决问题的方法,但我仍然不明白为什么我的第一个解决方案不起作用。这段代码:
for (int i=0; i <= PlanetList.size(); i++)
{
g.drawImage(PlanetList.get(i).planetImage, PlanetList.get(i).xPos, PlanetList.get(i).yPos);
}
给我一个 java.lang.IndexOutOfBoundsException 但是这个代码:
for (int i=1; i <= PlanetList.size(); i++)
{
g.drawImage(PlanetList.get(i-1).planetImage, PlanetList.get(i-1).xPos, PlanetList.get(i-1).yPos);
}
问题是……在这两种情况下,我的索引都从 0 开始。为什么第一个给我一个错误?
最佳答案
第一个示例中的最后一个索引超出了允许的索引范围。例如,如果列表的大小为 10,则允许的索引范围为 [0 9]。在您的第一个循环中,它上升到 10 ( i <= PlanetList.size()
)。将终端条件更改为 i < PlanetList.size()
解决您的问题。
另一种方法是按照@GhostCat 的建议,不使用索引来访问列表中的元素:
for (Planet planet : PlanetList) {
g.drawImage(planet.planetImage, planet.xPos, planet.yPos);
}
这叫做 for-each loop在Java中
关于java - For 循环和 LinkedList 的索引错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38548719/
我是一名优秀的程序员,十分优秀!