java.util.TimerTask.run() java.util.TimerTask.cancel() java.util.TimerTask.scheduledExecutionTime() 描述 run()方法接受此计时器任务要执行护理动作。 声明 以下是java.util.TimerTask.run()方法的声明。 public abstract void run() 参数 NA 返回值 NA 异常 NA 实例 以下示例显示了java.util.TimerTask.run()的用法 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); } // this method performs the task public void run() { System.out.println("Working"); } } 让我们编译并运行上面的程序,这将产生以下结果。 Working Working Working Working Working Working Working and so on ..... java.util.TimerTask.cancel() java.util.TimerTask.scheduledExecutionTime()