JAVA中怎么让for循环中每次的运算都停一秒?
JAVA中怎么让for循环中每次的运算都停一秒?
try {
Thread.sleep(1000L);//线程暂停1秒,传入参数的单位是毫秒,类型是Long
} catch (InterruptedException e) {
e.printStackTrace();
}
第二种方法,也是暂停一秒,详细的查看TimeUnit的API吧
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}