位置:首頁 > Java技術 > Java.util包 > java.util.Timer.cancel()方法實例

java.util.Timer.cancel()方法實例

cancel() 方法是用來終止此計時器,丟棄所有當前已安排的任務。

聲明

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

public void cancel()

參數

  • NA

返回值

NA

異常

  • NA

例子

下麵的例子顯示java.util.Timer.cancel()方法的使用

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(), 100);      
      
      // terminating the timer
      System.out.println("cancelling timer");
      timer.cancel();
   }
   // this method performs the task
   public void run() {
      System.out.println("working on");      
   }    
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

cancelling timer
working on