周期性线程池newScheduledThreadPool讲解

本文介绍了ScheduledThreadPoolExecutor与Timer的区别,并详细讲解ScheduledExecutorService接口中的schedule、scheduleAtFixedRate和scheduleWithFixedDelay方法。通过案例展示了如何使用ScheduledThreadPoolExecutor创建周期性任务,演示了任务的异步执行和调度。
摘要由CSDN通过智能技术生成

//Timer和ScheduledThreadPoolExecutor的区别:

a.Timer是单线程运行,一旦任务执行缓慢,下一个任务就会推迟,而如果使用了ScheduledThreadPoolExecutor线程数可以自行控制

b.当Timer中的一个任务抛出异常时,会导致其他所有任务都不执行

c.ScheduledThreadPoolExecutor可以异步执行

ScheduledExecutorService接口继承了ExecutorService,在ExecutorService的基础上新增了以下几个方法:

①schedule方法:
public ScheduledFuture<?> schedule(Runnable command,
                       long delay, TimeUnit unit);
command:执行的任务 Callable或Runnable接口实现类
delay:延时执行任务的时间
unit:时间单位

②scheduleAtFixedRate方法:

 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command,
                          long initialDelay,
                          long period,
                          TimeUnit unit);
command:执行的任务 Callable或Runnable接口实现类
initialDelay:线程第一次执行任务延迟时间
period:两个连续线程之间的周期
unit:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值