schedule和scheduleAtFixedRate的区别
Posted zjm-1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了schedule和scheduleAtFixedRate的区别相关的知识,希望对你有一定的参考价值。
schedule和scheduleAtFixedRate的区别在于:如果指定开始执行的时间在当前系统运行时间之前,scheduleAtFixedRate会把已经过去的时间也作为周期执行,而schedule不会把过去的时间算上。
示例如下:
SimpleDateFormat fTime = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); Date d1 = fTime.parse("2005/12/30 14:10:00"); t.scheduleAtFixedRate(new TimerTask(){ public void run() { System.out.println("this is task you do6"); } },d1,3*60*1000);
程序分析:
1、间隔时间是3分钟,指定开始时间是2005/12/30 14:10:00,如果在14:17:00分执行这个程序,那么会立刻打印3次
this is task you do6 //14:10
this is task you do6 //14:13
this is task you do6 //14:16
并且注意,下一次执行是在14:19 而不是 14:20。就是说是从指定的开始时间开始计时,而不是从执行时间开始计时;
2、上面如果用schedule方法,间隔时间是3分钟,指定开始时间是2005/12/30 14:10:00,那么在14:17:00分执行这个程序,则立即执行程序一次。并且下一次的执行时间是 14:20,而不是从14:10开始算的周期(14:19)。
以上是关于schedule和scheduleAtFixedRate的区别的主要内容,如果未能解决你的问题,请参考以下文章
schedule和scheduleAtFixedRate的区别
简单理解java中timer的schedule和scheduleAtFixedRate方法的区别
Timer TimerTask schedule scheduleAtFixedRate
定时任务调度工作(学习记录 四)schedule与scheduleAtFixedRate的区别
scheduleAtFixedRate 与 scheduleWithFixedDelay
ScheduledThreadPoolExecutor线程池scheduleAtFixedRate和scheduleWithFixedDelay的区别