当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.Timer.scheduleAtFixedRate()用法及代码示例



描述

这个scheduleAtFixedRate(TimerTask task,long delay,long period)方法用于安排指定任务重复执行 fixed-rate,在指定延迟后开始。

声明

以下是声明java.util.Timer.scheduleAtFixedRate()方法。

public void scheduleAtFixedRate(TimerTask task,long delay,long period)

参数

  • task- 这是要安排的任务。

  • delay- 这是执行任务之前的延迟(以毫秒为单位)。

  • period- 这是连续任务执行之间的时间(以毫秒为单位)。

返回值

NA

异常

  • IllegalArgumentException− 如果 time.getTime() 为负,则抛出此异常。

  • IllegalStateException- 如果任务已经被调度或取消、定时器被取消或定时器线程终止,则抛出此错误。

示例

下面的例子展示了 java.util.Timer.scheduleAtFixedRate() 的用法

package com.tutorialspoint;

import java.util.*;

public class TimerDemo {
   public static void main(String[] args) {
      
      // creating timer task, timer
      TimerTask tasknew = new TimerScheduleFixedRateDelay();
      Timer timer = new Timer();

      // scheduling the task at fixed rate delay
      timer.scheduleAtFixedRate(tasknew,500,1000);      
   }
   // this method performs the task

   public void run() {
      System.out.println("working at fixed rate delay");      
   }    
}

让我们编译并运行上面的程序,这将产生以下结果。

working at fixed rate delay
working at fixed rate delay
working at fixed rate delay
working at fixed rate delay and so on.....

相关用法


注:本文由纯净天空筛选整理自 java.util.Timer.scheduleAtFixedRate() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。