统计程序耗时神器

2022/6/16 1:21:23

本文主要是介绍统计程序耗时神器,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在我们日常工作中,一般怎么计算一段代码的耗时?
System.currentTimeMillis(),相信大家不陌生,还有一种就是StopWatch

System.currentTimeMillis()

使用

  • 记录开始时间
  • 记录结束时间
  • 计算两者差值

代码实现

	public static void statisticsTime() throws InterruptedException {
		long start;
		long end;

		start = System.currentTimeMillis();
		Thread.sleep(300);
		end = System.currentTimeMillis();
		System.out.println("测试睡眠1耗时:" + (end - start) + "ms");

		start = System.currentTimeMillis();
		Thread.sleep(200);
		end = System.currentTimeMillis();
		System.out.println("测试睡眠2耗时:" + (end - start) + "ms");

		start = System.currentTimeMillis();
		Thread.sleep(1000);
		end = System.currentTimeMillis();
		System.out.println("测试睡眠3耗时:" + (end - start) + "ms");

	}

运行结果

测试睡眠1耗时:302ms
测试睡眠2耗时:201ms
测试睡眠3耗时:1000ms

StopWatch

一个计时工具类,有很多个,这里使用的是org.springframework.util包下的StopWatch

使用

通过创建StopWatch,然后调用start方法和stop方法来记录时间,最后通过prettyPrint打印出统计分析信息。

代码实现

	public static void statisticsTimeByStopWatch() throws InterruptedException {
		StopWatch stopWatch = new StopWatch("测试");

		stopWatch.start("测试睡眠1");
		Thread.sleep(300);
		stopWatch.stop();

		stopWatch.start("测试睡眠2");
		Thread.sleep(200);
		stopWatch.stop();

		stopWatch.start("测试睡眠3");
		Thread.sleep(1000);
		stopWatch.stop();

		System.out.println(stopWatch.prettyPrint());
	}

运行结果

StopWatch '测试': running time (millis) = 1521
-----------------------------------------
ms     %     Task name
-----------------------------------------
00300  020%  测试睡眠1
00221  015%  测试睡眠2
01000  066%  测试睡眠3

可以直观看到总的耗时,以及各种组成部分的耗时,很方便



这篇关于统计程序耗时神器的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程