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


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



描述

這個cancel()方法用於取消此計時器任務。

聲明

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

public boolean cancel()

參數

NA

返回值

如果此任務計劃為 one-time 執行且尚未運行,則方法調用返回 true。如果任務計劃為 one-time 執行且已運行,則返回 false。

異常

NA

示例

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

package com.tutorialspoint;

import java.util.*;

public class TimerTaskDemo {
   public static void main(String[] args) {
      
      // creating timer task, timer
      TimerTask task = new TimerTaskCancel();
      Timer timer = new Timer();

      // scheduling the task
      timer.scheduleAtFixedRate(task, new Date(), 1000);

      // cancelling the task
      System.out.println("cancelling task:"+task.cancel());
   }
   // this is the implementation method
   
   public void run() {
      System.out.println("Working");
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果。

cancelling task:true
Working

相關用法


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