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

schedule(TimerTask task, Date time)方法實例

schedule(TimerTask task, Date time) 方法用於調度指定任務的執行時間在指定的時間。

聲明

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

public void schedule(TimerTask task, Date time)

參數

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

  • time--這是由哪個作業來執行在一個時間。

返回值

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

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

working on