forked from brianway/java-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRun4_schedule5.java
More file actions
52 lines (45 loc) · 1.33 KB
/
Copy pathRun4_schedule5.java
File metadata and controls
52 lines (45 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.brianway.learning.java.multithread.timer.example4;
/**
* Created by brian on 2016/4/15.
*/
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
/**
* P255
* schedule(TimerTask task, Date firstTime, long period) 方法
* Date类型
* 在延时的情况下,若执行任务被延时,下次执行任务的开始时间是上一次任务的开始时间作为参考点
*/
public class Run4_schedule5 {
static public class MyTask extends TimerTask {
@Override
public void run() {
try {
System.out.println("begin timer=" + System.currentTimeMillis());
Thread.sleep(5000);
System.out.println("end timer=" + System.currentTimeMillis());
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
MyTask task = new MyTask();
Calendar calendar = Calendar.getInstance();
Date runDate = calendar.getTime();
Timer timer = new Timer();
timer.schedule(task, runDate, 2000);
}
}
/*
输出:
begin timer=1460738337277
end timer=1460738342278
begin timer=1460738342278
end timer=1460738347278
begin timer=1460738347278
end timer=1460738352278
begin timer=1460738352278
*/