位置:首页 > Java技术 > Java.util包 > schedule(TimerTask task,long delay)方法实例

schedule(TimerTask task,long delay)方法实例

schedule(TimerTask task,long delay) 方法被用于安排指定的任务在指定的延迟后执行。

声明

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

public void schedule(TimerTask task,long delay)

参数

  • task--这是被调度的任务。

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

返回值

NA

异常

  • IllegalArgumentException--这个异常将被抛出,如果time.getTime()为负。

  • IllegalStateException-- 这将被抛出,如果任务已经安排或取消,计时器被取消,或者计时器线程已终止。

例子

下面的例子显示java.util.Timer.schedule()方法的使用

package com.yiibai;

import java.util.*;

public class TimerDemo {
   public static void main(String[] args) {
      // creating timer task, timer
      TimerTask tasknew = new TimerScheduleDelay();
      Timer timer = new Timer();
      
      // scheduling the task at interval
      timer.schedule(tasknew, 100);      
   }
   // this method performs the task
   public void run() {
      System.out.println("timer working");      
   }    
}

现在编译和运行上面的代码示例,将产生以下结果。

timer working