好的,我需要使按钮 esc 或任何按钮停止循环方法。我已经看遍了,但找不到答案。我知道你可以用 esc 退出 JFrame。但是只是一个常规方法呢?任何帮助都会很棒,谢谢!
也许是这样的?
public class Stop {
private static boolean loop = true;
private static int x = 0;
public static void main(String[] args) throws InterruptedException {
while (loop == true){
if (esc not pressed){
x++;
System.out.println(x);
}
else{
loop = false;
}
}
}
}