目录

int purge()

描述 (Description)

purge()方法用于从此计时器的任务队列中删除所有已取消的任务。

声明 (Declaration)

以下是java.util.Timer.purge()方法的声明。

public int purge()

参数 (Parameters)

NA

返回值 (Return Value)

方法调用返回从队列中删除的任务数。

异常 (Exception)

NA

例子 (Example)

以下示例显示了java.util.Timer.purge()的用法

package com.iowiki;
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
↑回到顶部↑
WIKI教程 @2018