scheduleAtFixedRate(TimerTask task,long delay,long period)方法實例
scheduleAtFixedRate(TimerTask task,long delay,long period) 方法用於安排指定的任務進行重複的固定速率執行,在指定的延遲後開始。
聲明
以下是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.yiibai; 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.....