📅  最后修改于: 2022-03-11 14:52:26.656000             🧑  作者: Mango
public class SleepThingy {
public static void main(String[] args)
throws InterruptedException {
// the Thread.sleep function throws an InterruptedException
for (int i = 1; i < 11; i++) {
System.out.println(i);
Thread.sleep(1000); // sleep 1000 ms or 1 sec
}
}
}