while循环中有Thread.sleep(200),但是执行时,不会逐步输出,而是假死一段时间后,输出所有结果,这个怎么解决?while(a=0){ try { Thread.sleep(250); } catch (InterruptedException e) { } a--; System.out.println(a);}
慕娘9325324
相关分类