Thread常用方法_sleep
Thread常用方法_sleep
sleep:使当前线程一指定的毫秒数暂停(暂停停止执行)
案例:
public class Thread1 extends Thread {
@Override
public void run() {
// 获取名字
for (int i = 0; i < 20; i++) {
System.out.println(i);
try {
// 踹出异常
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
// 线程1
Thread1 thread = new Thread1();
new Thread(thread).start();
}
}
这样打印输出就慢了