forked from brianway/java-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRun4_scheduleAtFixedRate2.java
More file actions
49 lines (42 loc) · 1.33 KB
/
Copy pathRun4_scheduleAtFixedRate2.java
File metadata and controls
49 lines (42 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
package com.brianway.learning.java.multithread.timer.example4;
/**
* Created by brian on 2016/4/15.
*/
import java.util.Timer;
import java.util.TimerTask;
/**
* P258
* scheduleAtFixedRate(TimerTask task, long delay, long period)方法
* long类型
* 不延时的情况下,若执行任务未被延时,第一次执行是任务开始+delay,下次执行任务的开始时间是上一次任务的开始时间加上period
*/
public class Run4_scheduleAtFixedRate2 {
static public class MyTask extends TimerTask {
@Override
public void run() {
try {
System.out.println("begin timer=" + System.currentTimeMillis());
Thread.sleep(1000);
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, 4000);
}
}
/*
输出:
当前时间:1460738574939
begin timer=1460738577940
end timer=1460738578940
begin timer=1460738581940
end timer=1460738582940
begin timer=1460738585940
end timer=1460738586940
*/