scheduleAtFixedRate和scheduleWithFixedDelay区别

时间:2025-04-03 14:28:52

Java中的定时任务ScheduledExecutorService 

1.  scheduleAtFixedRate

表示以固定频率执行的任务,如果当前任务耗时较多,超过定时周期period,则当前任务结束后会立即执行。

2. scheduleWithFixedDelay

表示以固定延时执行任务,延时是相对当前任务结束为起点计算开始时间。

3. 实验测试代码:

     //定时Executors,重新自定义ThreadFactory,这样便于通过线程名称来识别
        ScheduledExecutorService scheduledExecutorService = (1,
            new ThreadFactory() {
                int index = 0;
                public Thread newThread(Runnable r) {
                    index++;
                    return new Thread(r,""+index);
                }
            });
        /**
         * FixedRate表示会周期性的执行,如果执行时间长超过period的话,下一个周期会立即执行
         */
        //(new Runnable() {
        //    public void run() {
        //        ("exectue start time =" + ().format(("HH:mm:ss")));
        //        ("scheule at fixed run...,threadName=" + ().getName());
        //        try {
        //            (10 * 1000);
        //        }catch (Exception e){
        //
        //        }
        //        ("finish time=" + ().format(("HH:mm:ss")));
        //    }
        //},0,5,);
        /**
         *  fixedDelay的话,是在上一次执行完再delay时间后执行
         */
        (new Runnable() {
            public void run() {
                ("exectue start time =" + ().format(("HH:mm:ss")));
                ("scheule at fixed run...,threadName=" + ().getName());
                try {
                    (10 * 1000);
                }catch (Exception e){

                }
                ("finish time=" + ().format(("HH:mm:ss")));
            }
        },0,5,);