这是我的循环类:
公共类定时器{
private Timer timer;
private static boolean isRunning = true;
public static void gameLoop()
{
while(isRunning) //the loop
{
try {
Main.cash--;
Thread.sleep(2000);
} catch (InterruptedException e) {
// e.printStackTrace();
}
}
}
}
当我运行小程序时,我得到一个白屏,并且我无法关闭小程序,我必须使用 Eclipse 中的终止按钮。