手写一个运行耗时计算器
# 手写一个运行时间计算器
# RuntimeCalculator
此类是一个用于计算任务执行时间的工具类。
该类包含以下成员:
fmt
:一个SimpleDateFormat
对象,用于将时间格式化为指定的格式("HH:mm:ss.SSS"
)。Task
接口:一个函数式接口,用于定义任务的执行方法execute()
。
类中的静态方法:
- test(String title, Task task):测试方法,用于执行任务并计算耗时。
- 参数
title
:任务标题,可选参数,用于标识任务。 - 参数
task
:要执行的任务,必须实现Task
接口中的execute()
方法。
- 参数
代码实现:
public class RuntimeCalculator {
/** 时间格式化对象,用于将时间格式化为指定的格式 */
private static final SimpleDateFormat fmt = new SimpleDateFormat("HH:mm:ss.SSS");
/** 定义任务执行的接口 */
public interface Task {
void execute();
}
/**
* 执行任务并计算耗时
* @param title 任务标题,可选参数,用于标识任务
* @param task 要执行的任务,必须实现Task接口中的execute()方法
*/
public static void test(String title, Task task) {
// 如果任务为空,直接返回
if (task == null) {
return;
}
// 如果标题为空,设置为空字符串,否则添加标题标识
title = (title == null) ? "" : ("【" + title + "】");
// 输出标题
System.out.println(title);
// 输出任务开始时间
System.out.println("开始:" + fmt.format(new Date()));
// 记录任务开始时间
long begin = System.currentTimeMillis();
// 执行任务
task.execute();
// 记录任务结束时间
long end = System.currentTimeMillis();
// 输出任务结束时间
System.out.println("结束:" + fmt.format(new Date()));
// 计算耗时并输出
double delta = (end - begin) / 1000.0;
System.out.println("耗时:" + delta + "秒");
// 输出分隔线
System.out.println("-------------------------------------");
}
}
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
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
# 使用案例
参考笔者此篇文章:方法测试 | 集合 (opens new window)
上次更新: 2024/9/25 11:16:13