forked from brianway/java-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRun4_scheduleAtFixedRate4.java
More file actions
47 lines (41 loc) · 1.26 KB
/
Copy pathRun4_scheduleAtFixedRate4.java
File metadata and controls
47 lines (41 loc) · 1.26 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
package com.brianway.learning.java.multithread.timer.example4;
/**
* Created by brian on 2016/4/15.
*/
import java.util.Timer;
import java.util.TimerTask;
/**
* P259
* scheduleAtFixedRate(TimerTask task, long delay, long period)方法
* long类型
* 在延时的情况下,若执行任务被延时,下次执行任务的开始时间是上一次任务的开始时间作为参考点
*/
public class Run4_scheduleAtFixedRate4 {
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();
System.out.println("当前时间:" + System.currentTimeMillis());
Timer timer = new Timer();
timer.scheduleAtFixedRate(task, 3000, 2000);
}
}
/*
输出:
当前时间:1460738720674
begin timer=1460738723676
end timer=1460738728676
begin timer=1460738728676
end timer=1460738733676
begin timer=1460738733676
*/