位置:首頁 > Java技術 > Java.util包 > schedule(TimerTask task,Date firstTime,long period)方法實例

schedule(TimerTask task,Date firstTime,long period)方法實例

schedule(TimerTask task,Date firstTime,long period) 方法用於安排指定的任務進行重複的固定延遲執行,開始在指定的時間。

聲明

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

public void schedule(TimerTask task,Date firstTime,long period)

參數

  • task--這是被調度的任務。

  • firstTime--這是首次在該任務將被執行。

  • period--這是在連續執行任務之間的毫秒的時間。

返回值

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 TimerCancel();
      Timer timer = new Timer();
      
      // scheduling the task at interval
      timer.schedule(tasknew, new Date(),1000);      
   }
   // this method performs the task
   public void run() {
      System.out.println("working on");      
   }    
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

working on
working on
working on
working on
working on
working on and so on ...