scheduleAtFixedRate 与 scheduleWithFixedDelay 的区别[通俗易懂]

scheduleAtFixedRate 与 scheduleWithFixedDelay 的区别[通俗易懂]总结:scheduleAtFixedRate,是以上一个任务开始的时间计时,period时间过去后,检测上一个任务是否执行完毕,如果上一个任务执行完毕,则当前任务立即执行,如果上一个任务没有执行完毕,则需要等上一个任务执行完毕后立即执行。scheduleWithFixedDelay,是以上一个任务结束时开始计时,period时间过去后,立即执行。重点:两个方法分别以不

scheduleAtFixedRate

总结:

scheduleAtFixedRate ,是以上一个任务开始的时间计时,period时间过去后,检测上一个任务是否执行完毕,如果上一个任务执行完毕,则当前任务立即执行,如果上一个任务没有执行完毕,则需要等上一个任务执行完毕后立即执行。

scheduleWithFixedDelay,是以上一个任务结束时开始计时,period时间过去后,立即执行。

重点:

两个方法以不同的时间点作为参考。

例子:

package com.yuankai.t1.thread;

import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

public class ScheduleExecutorServiceTest {

	public static void main(String[] args) {
		ScheduleExecutorServiceTest test = new ScheduleExecutorServiceTest();
		test.testWithFixedDelay();
	}
	
	private ScheduledExecutorService executor;
	
	public ScheduleExecutorServiceTest() {
		executor = Executors.newScheduledThreadPool(4);
	}
	
	public void testAtFixedRate() {
		executor.scheduleAtFixedRate(new Runnable() {
			
			public void run() {
				System.out.println("====");
				try {
					Thread.sleep(10000);
					System.out.println("执行完毕");
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
		}, 1000, 3000, TimeUnit.MILLISECONDS);
	}
	
	public void testWithFixedDelay() {
		executor.scheduleWithFixedDelay(new Runnable() {
			
			public void run() {
				System.out.println("====");
				try {
					int i = 1 / 0;
				} catch (Exception e) {
					e.printStackTrace();
				}
				/*
				try {
					Thread.sleep(10000);
					System.out.println("执行完毕");
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
				*/
			}
		}, 1000, 3000, TimeUnit.MILLISECONDS);
	}

}

注意:

通过ScheduledExecutorService执行的周期任务,如果任务执行过程中抛出了异常,那么过ScheduledExecutorService就会停止执行任务,且也不会再周期地执行该任务了。所以你如果想保住任务都一直被周期执行,那么catch一切可能的异常。

今天的文章scheduleAtFixedRate 与 scheduleWithFixedDelay 的区别[通俗易懂]分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/58193.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注