當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java java.util.Timer.purge()用法及代碼示例



描述

這個purge()方法用於從此計時器的任務隊列中刪除所有取消的任務。

聲明

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

public int purge()

參數

NA

返回值

方法調用返回從隊列中移除的任務數。

異常

NA

示例

下麵的例子展示了 java.util.Timer.purge() 的用法

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 java.util.Timer.purge() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。