schedule(TimerTask task, Date time)方法实例
schedule(TimerTask task, Date time) 方法用于调度指定任务的执行时间在指定的时间。
声明
以下是java.util.Timer.schedule()方法的声明。
public void schedule(TimerTask task, Date time)
参数
-
task--这是被调度的任务。
-
time--这是由哪个作业来执行在一个时间。
返回值
NA
异常
-
IllegalArgumentException-- 这个异常将被抛出,如果time.getTime()为负。
-
IllegalStateException--这将被抛出,如果任务已经安排或取消,计时器被取消,或者计时器线程已终止。
例子
下面的例子显示java.util.Timer.schedule()方法的使用
package com.yiibai; import java.util.*; public class TimerDemo { public static void main(String[] args) { // creating timer task, timer TimerTask tasknew = new TimerCancel(); Timer timer = new Timer(); // scheduling the task timer.schedule(tasknew, new Date()); } // this method performs the task public void run() { System.out.println("working on"); } }
现在编译和运行上面的代码示例,将产生以下结果。
working on