我需要帮助来循环我的代码中的操作

时间:2013-09-09 18:04:29

标签: java loops

我想在may代码中循环一个动作,它将一直重复直到progrmm关闭: 我认为这不是一件容易的事情,所以如果你帮助我,我会很高兴! :)

public static void main(String[] args) throws IOException, AWTException{

    final Robot robot = new Robot();

    robot.delay(2000);



    //code to repeat
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(1);


}

}

1 个答案:

答案 0 :(得分:2)

这将永远循环

while(true)
{
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(1);
}

这将循环n次:

final int n = 1000;
for(int i = 0; i < n; i++)
{
    robot.mousePress(InputEvent.BUTTON1_MASK);
    robot.delay(1);
}