一旦数组中的最后一个元素符合条件,如何使循环结束?

在弹跳球程序中,它要求用户插入一些将显示在屏幕上的球,并将从画布顶部开始,然后在画布底部的一条线上落下并弹起。

完成= true时,动画将停止。 到目前为止,一旦第一个球的X位置超过550,动画就会停止。一旦每个球的X位置超过550,我该如何让动画结束?

public void multiBounce(int numBalls)
{
    BouncingBall[] balls;
    balls = new BouncingBall[numBalls];

    int x = 50;
    int y = 150;

    for (int i = 0; i < balls.length; i++){


          balls[i] = new BouncingBall(x, y, 16, Color.blue, ground, myCanvas);
          x = x + 20;
          y = y - 30;
          balls[i].draw();  
    }

    boolean finished =  false;

    while(!finished) {

     for (int i = 0; i < balls.length; i++){

           balls[i].move();

    }

     for (int i = 0; i < balls.length; i++){
         if (balls[i].getXPosition() >= 550){

             finished = true;

        }
    }
}

只要检查每个球是否超出了你想要的位置。 这段代码应该可以完成这项工作。 用下面的代码替换最后一个for循环。

finished=true;
for (int i = 0; i < balls.length; i++){ 
    if (balls[i].getXPosition() >= 550){  
        finished = finished && true; }
    else{
        finished=false;
        break;
    } 
}

你应该使用break语句。 当它在loop内遇到时, loop立即终止,程序控制在loop之后的下一个语句处重新开始。 有关更多详细信息,请参阅分支语句

public void multiBounce(int numBalls)
    {
        BouncingBall[] balls;
        balls = new BouncingBall[numBalls];

        int x = 50;
        int y = 150;

        for (int i = 0; i < balls.length; i++){


            balls[i] = new BouncingBall(x, y, 16, Color.blue, ground, myCanvas);
            x = x + 20;
            y = y - 30;
            balls[i].draw();
        }

        boolean finished =  false;

        while(!finished) {

            for (int i = 0; i < balls.length; i++){

                balls[i].move();

            }

            for (int i = 0; i < balls.length; i++){
                if (balls[i].getXPosition() < 550){
                    finished = false;
                    break;
                }
                else {
                    finished = true;
                }
            }

            }
        }
链接地址: http://www.djcxy.com/p/66445.html

上一篇: How to make loop end once the last element in the array meets condition?

下一篇: libGDX touch in effect after touch