时间:2021-05-19
开发中,往往遇到另起线程执行其他代码的情况,用java定时任务接口ScheduledExecutorService来实现。
ScheduledExecutorService是基于线程池设计的定时任务类,每个调度任务都会分配到线程池中的一个线程去执行,也就是说,任务是并发执行,互不影响。
注意,只有当调度任务来的时候,ScheduledExecutorService才会真正启动一个线程,其余时间ScheduledExecutorService都是处于轮询任务的状态。
1.scheduleAtFixedRate方法
例子:
import java.text.SimpleDateFormat;import java.util.Date;import java.util.concurrent.Executors;import java.util.concurrent.ScheduledExecutorService;import java.util.concurrent.TimeUnit;public class ScheduleAtFixedRateDemo { public static void main(String[] args) { ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1); SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式 executorService.scheduleAtFixedRate(new Runnable(){ @Override public void run() { System.out.println("++++++++++++++++++++thread:" + df.format(new Date())); } }, 2, 3, TimeUnit.SECONDS); System.out.println("++++++++++++++++++++main:" + df.format(new Date())); }}运行结果:
++++++++++++++++++++main:2017-10-20 15:20:52++++++++++++++++++++thread:2017-10-20 15:20:54++++++++++++++++++++thread:2017-10-20 15:20:57++++++++++++++++++++thread:2017-10-20 15:21:00++++++++++++++++++++thread:2017-10-20 15:21:03++++++++++++++++++++thread:2017-10-20 15:21:06可以看出来,在2s后,子线程开始执行,并且每过3s轮询执行一次。
2.scheduleWithFixedDelay方法
例子:
import java.text.SimpleDateFormat;import java.util.Date;import java.util.concurrent.Executors;import java.util.concurrent.ScheduledExecutorService;import java.util.concurrent.TimeUnit;/** * ScheduleWithFixedDelay的用法 * @author Administrator * */public class ScheduleWithFixedDelayDemo { public static void main(String[] args) { ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1); SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式 executorService.scheduleWithFixedDelay(new Runnable(){ @Override public void run() { System.out.println("++++++++++++++++++++thread:" + df.format(new Date())); } }, 2, 3, TimeUnit.SECONDS); System.out.println("++++++++++++++++++++main:" + df.format(new Date())); }}运行结果:
++++++++++++++++++++main:2017-10-20 15:24:32++++++++++++++++++++thread:2017-10-20 15:24:34++++++++++++++++++++thread:2017-10-20 15:24:37++++++++++++++++++++thread:2017-10-20 15:24:40++++++++++++++++++++thread:2017-10-20 15:24:433.两个区别
ScheduleAtFixedRate每次执行时间为上一次任务开始起向后推一个时间间隔,即每次执行时间为initialDelay,initialDelay+period,initialDelay+2*period。。。。。
ScheduleWithFixedDelay每次执行时间为上一次任务结束起向后推一个时间间隔,即每次执行时间为:initialDelay,initialDelay+executeTime+delay,initialDelay+2*executeTime+2*delay。。。。。
由此可见,ScheduleAtFixedRate是基于固定时间间隔进行任务调度,ScheduleWithFixedDelay取决于每次任务执行的时间长短,是基于不固定时间间隔进行任务调度。
以上这篇基于ScheduledExecutorService的两种方法(详解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python系统调用的实例详解本文将通过两种方法对python系统调用进行讲解,包括python使用CreateProcess函数运行其他程序和ctypes模块
Android判断后台服务是否开启的两种方法实例详解最近项目用到后台上传,就开启了一个服务service。但是刚开始用这种方法,有些机型不支持:酷派不支持。然后
Comet技术。目前,Comet技术有两种方法实现:基于AJAX的长轮询方式和基于Iframe的流方式。传统的网页实时通信技术使用HTTP协议,然而,HTTP协
IOS静态方法与动态方法详解1、问题提出iOS中有静态方法与动态方法,那么两种方法的异同是什么?2、问题分析因为每个对象都由相应的数据结构与方法相构成,一个程序
我发现两种方法,其实原理差不多假如a.txt中的内容是下面的复制代码代码如下:ASP中_DateDiff_函数详解.htmASP中_Split_函数的实例.ht