欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使当前线程暂停的方法

程序员文章站 2022-07-05 13:22:01
...
package cn.dali3.code01;
/*使当前线程暂停的方法
    Thread类下:
*   public static void sleep(long millis) 使当前正在运行的进程暂停millis毫秒
*  */
public class Demo03 {
    public static void main(String[] args) {
        for (int i = 0; i < 10; i++) {
            System.out.println(i);
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}