Java ArrayIndexOutOfBoundsException 1错误

时间:2017-12-17 16:35:02

标签: java

我正在尝试进行一个阶乘尾随零运动,但我不断得到数组索引超出范围的错误。需要帮助解决此问题。谢谢!

let dx = location.x - bullet.position.x
let dy = location.y - bullet.position.y
let vector  = CGVector(dx: dx, dy: dy)
bullet.run(SKAction.move(by: vector, duration: 1.0)) //choose your own duration of course

1 个答案:

答案 0 :(得分:1)

你有

for (int i=0;i<num;i++) {

然后

num++;

在每个圆圈处递增。 这就是原因。