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


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



描述

這個cancel()方法用於終止此計時器並丟棄任何當前計劃的任務。

聲明

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

public void cancel()

參數

NA

返回值

NA

異常

NA

示例

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

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(), 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

相關用法


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