java.util.Timer.scheduleAtFixedRate()方法實例
scheduleAtFixedRate(TimerTask task,Date firstTime,long period) 方法用於安排指定的任務進行重複的固定速率執行,開始在指定的時間。
聲明
以下是java.util.Timer.scheduleAtFixedRate()方法的聲明。
public void scheduleAtFixedRate(TimerTask task,Date firstTime,long period)
參數
-
task--這是被調度的任務。
-
firstTime--這是首次在該任務將被執行。
-
period-- 這是在連續執行任務之間的毫秒的時間。
返回值
NA
異常
-
IllegalArgumentException--下麵的例子顯示java.util.Timer.scheduleAtFixedRate()方法的使用
-
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 TimerScheduleFixedRate(); Timer timer = new Timer(); // scheduling the task at fixed rate timer.scheduleAtFixedRate(tasknew,new Date(),1000); } // this method performs the task public void run() { System.out.println("working at fixed rate"); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
working at fixed rate working at fixed rate working at fixed rate working at fixed rate and so on ...