java.util.Timer.purge()方法實例
purge()方法用於從這個計時器的任務隊列中移除所有已取消的任務。
聲明
以下是java.util.Timer.purge()方法的聲明。
public int purge()
參數
-
NA
返回值
方法調用返回從隊列中刪除的任務數。
異常
-
NA
例子
下麵的例子顯示java.util.Timer.purge()方法的使用
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.scheduleAtFixedRate(tasknew, new Date(), 10); // cancel task timer.cancel(); // purging the timer System.out.println("purge value :"+timer.purge()); } // this method performs the task public void run() { System.out.println("working on"); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
working on purge value :0