位置:首页 > Java技术 > Java.util包 > java.util.Timer.purge()方法实例

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