任务调度
2019-07-07 23:45 更新
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
public class MyThread{
public static void main(String[] args) throws InterruptedException {
//一秒后每隔200毫秒打印一次hello...
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
System.out.println("hello...");
}
}, new Date(System.currentTimeMillis()+1000), 200);
}
}
以上内容是否对您有帮助:
← 生产者消费者
更多建议: