java.util.TimerTask.scheduledExecutionTime() java.util.TimerTask.run() java.util.Timer.cancel() 描述 该scheduledExecutionTime()方法用于返回此任务最近实际执行的安排执行时间。 声明 以下是java.util.TimerTask.scheduledExecutionTime()方法的声明。 public long scheduledExecutionTime() 参数 NA 返回值 方法调用返回计划最近执行此任务的时间。 异常 NA 实例 以下示例显示了java.util.TimerTask.scheduledExecutionTime()的用法 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); // checking scheduled execution time System.out.println("Time is :"+task.scheduledExecutionTime()); } // this method performs the task public void run() { System.out.println("Working on the task assigned"); } } 让我们编译并运行上面的程序,这将产生以下结果。 Time is :1335444782599 Working Working Working Working Working Working and so on java.util.TimerTask.run() java.util.Timer.cancel()