下面小编就为大家带来一篇基于ScheduledExecutorService的两种方法(详解)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
开发中,往往遇到另起线程执行其他代码的情况,用Java 语言(一种计算机语言,尤用于创建网站)语言(一种计算机语言,尤用于创建网站)定时任务接口ScheduledExecutorService来实现。
ScheduledExecutorService是基于线程池设计的定时任务类,每个调度任务都会分配到线程池中的一个线程去执行,也就是说,任务是并发执行,互不影响。
注意,只有当调度任务来的时候,ScheduledExecutorService才会真正启动一个线程,其余时间ScheduledExecutorService都是处于轮询任务的状态。
1.scheduleAtFixedRate方法
例子:
导入Java。文字。简单的日期格式;
导入Java。util。日期;
导入Java。util。并发。遗嘱执行人;
导入Java。util。并发。scheduledexecutorservice
导入Java。util。并发。时间单位;
公共类ScheduleAtFixedRateDemo {
公共静态void main(String[] args) {
ScheduledExecutorService executorService=executors。newscheduledthreadpool(1);
简单日期格式df=
新的简单日期格式(' yyyy-MM-DD HH:MM:ss ');//设置日期格式
执行服务。scheduleatfixedrate(new Runnable(){
@覆盖
公共无效运行(){
系统。出去。println(' thread:' df。format(new Date()));
}
},2,3,时间单位。秒);
系统。出去。println(' main:' df。format(new Date()));
}
}
运行结果:
主要时间:2017-10-20 15:20:52
线索:2017-10-20 15:20:54
线索:2017-10-20 15:20:57
跟帖时间:2017-10-20 15:21:00
跟帖时间:2017-10-20 15:21:03
跟帖时间:2017-10-20 15:21:06
可以看出来,在2s后,子线程开始执行,并且每过3s轮询执行一次。
2.scheduleWithFixedDelay方法
例子:
导入Java。文字。简单的日期格式;
导入Java。util。日期;
导入Java。util。并发。遗嘱执行人;
导入Java。util。并发。scheduledexecutorservice
导入Java。util。并发。时间单位;
/**
* ScheduleWithFixedDelay的用法
* @作者管理员
*
*/
公共类ScheduleWithFixedDelayDemo {
公共静态void main(String[] args) {
ScheduledExecutorService executorService=executors。newscheduledthreadpool(1);
简单日期格式df=
新的简单日期格式(' yyyy-MM-DD HH:MM:ss ');//设置日期格式
执行服务。schedulewithfixeddelay(new Runnable(){
@覆盖
公共无效运行(){
系统。出去。println(' thread:' df。format(new Date()));
}
},2,3,时间单位。秒);
系统。出去。println(' main:' df。format(new Date()));
}
}
运行结果:
主要时间:2017-10-20 15:24:32
线索:2017-10-20 15:24:34
线索:2017-10-20 15:24:37
线索:2017-10-20 15:24:40
线索:2017-10-20 15:24:43
3.两个区别
ScheduleAtFixedRate每次执行时间为上一次任务开始起向后推一个时间间隔,即每次执行时间为初始延迟,初始延迟周期,初始延迟2 *周期。
ScheduleWithFixedDelay每次执行时间为上一次任务结束起向后推一个时间间隔,即每次执行时间为:初始延迟,初始延迟执行时间延迟,初始延迟2 *执行时间2 *延迟。
由此可见,ScheduleAtFixedRate是基于固定时间间隔进行任务调度,ScheduleWithFixedDelay取决于每次任务执行的时间长短,是基于不固定时间间隔进行任务调度。
以上这篇基于ScheduledExecutorService的两种方法(详解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。