有时候我们需要让线程在一段时间内不做任何事。例如某线程每个一小时检测一下传感器,剩余的时间不做任何事。
我们可以使用sleep()方法使线程睡眠,此期间不占用计算机资源。
这个方法接受一个整数表示睡眠的毫秒数。
睡眠结束后,JVM将从新分配其CPU时间。
另一种睡眠方式是使用TimeUnit枚举元素的sleep()方法。
本例中,我们将开发一个程序,使用sleep()方法,实现每秒钟输出系统时间。
FileClock.java
package com.dylan.thread.ch1.c05;import java.util.Date;
import java.util.concurrent.TimeUnit;/*** @author xusucheng* @create 2018-04-13**/
public class FileClock implements Runnable {&#64;Overridepublic void run() {for (int i &#61; 0; i <10; i&#43;&#43;) {System.out.printf("%s\n", new Date());try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {System.out.printf("The FileClock has been interrupted");}}}}
Main.java
package com.dylan.thread.ch1.c05;import java.util.concurrent.TimeUnit;/*** &#64;author xusucheng* &#64;create 2018-04-24**/
public class Main {public static void main(String[] args) {FileClock clock&#61;new FileClock();Thread thread&#61;new Thread(clock);thread.start();try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}thread.interrupt();}
}
输出&#xff1a;
Tue Apr 24 23:27:30 CST 2018
Tue Apr 24 23:27:32 CST 2018
Tue Apr 24 23:27:33 CST 2018
Tue Apr 24 23:27:34 CST 2018
Tue Apr 24 23:27:35 CST 2018
The FileClock has been interruptedTue Apr 24 23:27:35 CST 2018
Tue Apr 24 23:27:36 CST 2018
Tue Apr 24 23:27:37 CST 2018
Tue Apr 24 23:27:38 CST 2018
Tue Apr 24 23:27:39 CST 2018