scheduleAtFixedRate方法是Java中的一個定時任務調度方法,用于周期性地執行某個任務。它接受三個參數:任務的Runnable對象、延遲時間和周期時間。
下面是一個簡單的示例代碼,演示了如何使用scheduleAtFixedRate方法:
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
public class ScheduleAtFixedRateExample {
public static void main(String[] args) {
// 創建一個ScheduledExecutorService對象
ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);
// 創建一個Runnable對象,用于定義要執行的任務
Runnable task = new Runnable() {
public void run() {
System.out.println("Task executed at fixed rate.");
}
};
// 使用scheduleAtFixedRate方法執行任務
// 延遲1秒后開始執行,之后每隔3秒執行一次
executor.scheduleAtFixedRate(task, 1, 3, TimeUnit.SECONDS);
// 程序繼續執行其他任務
System.out.println("Main thread continues to do other tasks.");
}
}
在上面的示例代碼中,首先創建了一個ScheduledExecutorService對象,然后定義了一個Runnable對象,該對象實現了要執行的任務。接下來使用scheduleAtFixedRate方法,將任務和延遲時間、周期時間作為參數傳遞給該方法,即可執行周期性任務。
在這個示例中,任務會在延遲1秒后開始執行,然后每隔3秒執行一次。主線程會繼續執行其他任務,而周期性任務會在后臺線程中定期執行。
需要注意的是,雖然使用了scheduleAtFixedRate方法,但并不能保證任務的執行時間間隔是精確的,可能會受到任務的執行時間和系統負載的影響。如果需要更精確的任務執行時間間隔,可以考慮使用scheduleWithFixedDelay方法。