java.util.TimerTask.scheduledExecutionTime()方法實例
scheduledExecutionTime() 方法用於返回此任務最近實際執行的安排執行的時間。
聲明
以下是java.util.TimerTask.scheduledExecutionTime()方法的聲明。
public long scheduledExecutionTime()
參數
-
NA
返回值
方法調用返回在其中最近執行這項任務被調度發生的時間。
異常
-
NA
例子
下麵的例子顯示java.util.TimerTask.scheduledExecutionTime()方法的使用
package com.yiibai; 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