java for while循环_java – For和While循环

我有一个同时运行的程序,我有这个问题,我想停止线程,但一旦我点击输入,for循环/ while循环不会被取消

如果我从for循环中取出for循环,程序实际上会响应enter并关闭.

class MyNumber extends Thread {

private volatile boolean processing = true;

public void run() {

while (processing) {

// Once I take this for loop out(put // beside it like right now), the enter key to stop the program then does work.

//for(int i = 1; i<27; i++){

System.out.println("Letter " + "i");

try {

Thread.sleep(1000);

} catch (InterruptedException e) {

e.printStackTrace();

}

// }

}

}

public void permSleep() {

processing = false;

}

}

public class LetterNumber {

public static void main(String[] args) {

MyNumber num1 = new MyNumber();

num1.start();

System.out.println("Hit enter to stop the Numbers!");

Scanner shutter1 = new Scanner(System.in);

shutter1.nextLine();

num1.permSleep();

}

}

为什么for循环导致程序不关闭?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值