java.util.TimerTask.run()方法实例
run() 方法需要进行此计时器任务执行的操作。
声明
以下是java.util.TimerTask.run()方法的声明。
public abstract void run()
参数
-
NA
返回值
NA
异常
-
NA
例子
下面的例子显示java.util.TimerTask.run()方法的使用
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); } // this method performs the task public void run() { System.out.println("Working"); } }
现在编译和运行上面的代码示例,将产生以下结果。
Working Working Working Working Working Working Working and so on .....