Java多线程基础之任务调度
Posted yjxs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java多线程基础之任务调度相关的知识,希望对你有一定的参考价值。
* Timer:任务调度
* schedule(TimerTask task, Date time);
* schedule(TimerTask task, Date
* firstTime, long period);
* TimerTask实现了Runnable接口;也是一个线程 可以了解一下QUQRTZ框架
public class Time { public static void main(String[] args) { Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public void run() { System.out.println(" so easy"); } }, new Date(System.currentTimeMillis() + 1000), 1000); } }
以上是关于Java多线程基础之任务调度的主要内容,如果未能解决你的问题,请参考以下文章