位置:首頁 > 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