6种快速统计代码执行时间的方法,真香!

开发 前端
我们在日常开发中经常需要测试一些代码的执行时间,但又不想使用向 JMH(Java Microbenchmark Harness,Java 微基准测试套件)这么重的测试框架,所以本文就汇总了一些 Java 中比较常用的执行时间统计方法,总共包含以下 6 种。

[[333530]]

本文转载自微信公众号「Java中文社群」,作者磊哥  。转载本文请联系Java中文社群公众号。 

我们在日常开发中经常需要测试一些代码的执行时间,但又不想使用向 JMH(Java Microbenchmark Harness,Java 微基准测试套件)这么重的测试框架,所以本文就汇总了一些 Java 中比较常用的执行时间统计方法,总共包含以下 6 种,如下图所示:

 

方法一:System.currentTimeMillis

此方法为 Java 内置的方法,使用 System#currentTimeMillis 来统计执行的时间(统计单位:毫秒),示例代码如下:

  1. public class TimeIntervalTest { 
  2.     public static void main(String[] args) throws InterruptedException { 
  3.         // 开始时间 
  4.         long stime = System.currentTimeMillis(); 
  5.         // 执行时间(1s) 
  6.         Thread.sleep(1000); 
  7.         // 结束时间 
  8.         long etime = System.currentTimeMillis(); 
  9.         // 计算执行时间 
  10.         System.out.printf("执行时长:%d 毫秒.", (etime - stime)); 
  11.     } 

以上程序的执行结果为:

执行时长:1000 毫秒.

方法二:System.nanoTime

此方法为 Java 内置的方法,使用 System#nanoTime 来统计执行时间(统计单位:纳秒),它的执行方法和 System#currentTimeMillis 类似,示例代码如下:

  1. public class TimeIntervalTest { 
  2.     public static void main(String[] args) throws InterruptedException { 
  3.         // 开始时间 
  4.         long stime = System.nanoTime(); 
  5.         // 执行时间(1s) 
  6.         Thread.sleep(1000); 
  7.         // 结束时间 
  8.         long etime = System.nanoTime(); 
  9.         // 计算执行时间 
  10.         System.out.printf("执行时长:%d 纳秒.", (etime - stime)); 
  11.     } 

以上程序的执行结果为:

执行时长:1000769200 纳秒.

小贴士:1 毫秒 = 100 万纳秒。

方法三:new Date

此方法也是 Java 的内置方法,在开始执行前 new Date() 创建一个当前时间对象,在执行结束之后 new Date() 一个当前执行时间,然后再统计两个 Date 的时间间隔,示例代码如下:

  1. import java.util.Date
  2.  
  3. public class TimeIntervalTest { 
  4.     public static void main(String[] args) throws InterruptedException { 
  5.         // 开始时间 
  6.         Date sdate = new Date(); 
  7.         // 执行时间(1s) 
  8.         Thread.sleep(1000); 
  9.         // 结束时间 
  10.         Date edate = new Date(); 
  11.         //  统计执行时间(毫秒) 
  12.         System.out.printf("执行时长:%d 毫秒." , (edate.getTime() - sdate.getTime()));  
  13.     } 

以上程序的执行结果为:

  • 执行时长:1000 毫秒.

方法四:Spring StopWatch

如果我们使用的是 Spring 或 Spring Boot 项目,可以在项目中直接使用 StopWatch 对象来统计代码执行时间,示例代码如下:

  1. StopWatch stopWatch = new StopWatch(); 
  2. // 开始时间 
  3. stopWatch.start(); 
  4. // 执行时间(1s) 
  5. Thread.sleep(1000); 
  6. // 结束时间 
  7. stopWatch.stop(); 
  8. // 统计执行时间(秒) 
  9. System.out.printf("执行时长:%d 秒.%n", stopWatch.getTotalTimeSeconds()); // %n 为换行 
  10. // 统计执行时间(毫秒) 
  11. System.out.printf("执行时长:%d 毫秒.%n", stopWatch.getTotalTimeMillis());  
  12. // 统计执行时间(纳秒) 
  13. System.out.printf("执行时长:%d 纳秒.%n", stopWatch.getTotalTimeNanos()); 

以上程序的执行结果为:

执行时长:0.9996313 秒. 执行时长:999 毫秒. 执行时长:999631300 纳秒.

小贴士:Thread#sleep 方法的执行时间稍有偏差,在 1s 左右都是正常的。

方法五:commons-lang3 StopWatch

如果我们使用的是普通项目,那我们可以用 Apache commons-lang3 中的StopWatch 对象来实现时间统计,首先先添加 commons-lang3 的依赖:

  1. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> 
  2. <dependency> 
  3.   <groupId>org.apache.commons</groupId> 
  4.   <artifactId>commons-lang3</artifactId> 
  5.   <version>3.10</version> 
  6. </dependency> 

然后编写时间统计代码:

  1. import org.apache.commons.lang3.time.StopWatch; 
  2.  
  3. import java.util.concurrent.TimeUnit; 
  4.  
  5. public class TimeIntervalTest { 
  6.     public static void main(String[] args) throws InterruptedException { 
  7.         StopWatch stopWatch = new StopWatch(); 
  8.         // 开始时间 
  9.         stopWatch.start(); 
  10.         // 执行时间(1s) 
  11.         Thread.sleep(1000); 
  12.         // 结束时间 
  13.         stopWatch.stop(); 
  14.         // 统计执行时间(秒) 
  15.         System.out.println("执行时长:" + stopWatch.getTime(TimeUnit.SECONDS) + " 秒."); 
  16.         // 统计执行时间(毫秒) 
  17.         System.out.println("执行时长:" + stopWatch.getTime(TimeUnit.MILLISECONDS) + " 毫秒."); 
  18.         // 统计执行时间(纳秒) 
  19.         System.out.println("执行时长:" + stopWatch.getTime(TimeUnit.NANOSECONDS) + " 纳秒."); 
  20.     } 

以上程序的执行结果为:

执行时长:1 秒. 执行时长:1000 毫秒.

执行时长:1000555100 纳秒.

方法六:Guava Stopwatch

除了 Apache 的 commons-lang3 外,还有一个常用的 Java 工具包,那就是 Google 的 Guava,Guava 中也包含了 Stopwatch 统计类。首先先添加 Guava 的依赖:

  1. <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> 
  2. <dependency> 
  3.   <groupId>com.google.guava</groupId> 
  4.   <artifactId>guava</artifactId> 
  5.   <version>29.0-jre</version> 
  6. </dependency> 

然后编写时间统计代码:

  1. import com.google.common.base.Stopwatch; 
  2.  
  3. import java.util.concurrent.TimeUnit; 
  4.  
  5. public class TimeIntervalTest { 
  6.     public static void main(String[] args) throws InterruptedException { 
  7.         // 创建并启动计时器 
  8.         Stopwatch stopwatch = Stopwatch.createStarted(); 
  9.         // 执行时间(1s) 
  10.         Thread.sleep(1000); 
  11.         // 停止计时器 
  12.         stopwatch.stop(); 
  13.         // 执行时间(单位:秒) 
  14.         System.out.printf("执行时长:%d 秒. %n", stopwatch.elapsed().getSeconds()); // %n 为换行 
  15.         // 执行时间(单位:毫秒) 
  16.         System.out.printf("执行时长:%d 豪秒.", stopwatch.elapsed(TimeUnit.MILLISECONDS)); 
  17.     } 

以上程序的执行结果为:

执行时长:1 秒.

执行时长:1000 豪秒.

原理分析本文我们从 Spring 和 Google 的 Guava 源码来分析一下,它们的 StopWatch 对象底层是如何实现的?

1.Spring StopWatch 原理分析

在 Spring 中 StopWatch 的核心源码如下:

  1. package org.springframework.util; 
  2.  
  3. import java.text.NumberFormat; 
  4. import java.util.LinkedList; 
  5. import java.util.List; 
  6. import java.util.concurrent.TimeUnit; 
  7. import org.springframework.lang.Nullable; 
  8.  
  9. public class StopWatch { 
  10.     private final String id; 
  11.     private boolean keepTaskList; 
  12.     private final List<StopWatch.TaskInfo> taskList; 
  13.     private long startTimeNanos; 
  14.     @Nullable 
  15.     private String currentTaskName; 
  16.     @Nullable 
  17.     private StopWatch.TaskInfo lastTaskInfo; 
  18.     private int taskCount; 
  19.     private long totalTimeNanos; 
  20.  
  21.     public StopWatch() { 
  22.         this(""); 
  23.     } 
  24.  
  25.     public StopWatch(String id) { 
  26.         this.keepTaskList = true
  27.         this.taskList = new LinkedList(); 
  28.         this.id = id; 
  29.     } 
  30.  
  31.     public String getId() { 
  32.         return this.id; 
  33.     } 
  34.  
  35.     public void setKeepTaskList(boolean keepTaskList) { 
  36.         this.keepTaskList = keepTaskList; 
  37.     } 
  38.  
  39.     public void start() throws IllegalStateException { 
  40.         this.start(""); 
  41.     } 
  42.  
  43.     public void start(String taskName) throws IllegalStateException { 
  44.         if (this.currentTaskName != null) { 
  45.             throw new IllegalStateException("Can't start StopWatch: it's already running"); 
  46.         } else { 
  47.             this.currentTaskName = taskName; 
  48.             this.startTimeNanos = System.nanoTime(); 
  49.         } 
  50.     } 
  51.  
  52.     public void stop() throws IllegalStateException { 
  53.         if (this.currentTaskName == null) { 
  54.             throw new IllegalStateException("Can't stop StopWatch: it's not running"); 
  55.         } else { 
  56.             long lastTime = System.nanoTime() - this.startTimeNanos; 
  57.             this.totalTimeNanos += lastTime; 
  58.             this.lastTaskInfo = new StopWatch.TaskInfo(this.currentTaskName, lastTime); 
  59.             if (this.keepTaskList) { 
  60.                 this.taskList.add(this.lastTaskInfo); 
  61.             } 
  62.  
  63.             ++this.taskCount; 
  64.             this.currentTaskName = null
  65.         } 
  66.     } 
  67.     // .... 忽略其他代码 

从上述 start() 和 stop() 的源码中可以看出,Spring 实现时间统计的本质还是使用了 Java 的内置方法 System.nanoTime() 来实现的。

2.Google Stopwatch 原理分析

Google Stopwatch 实现的核心源码如下:

  1. public final class Stopwatch { 
  2.     private final Ticker ticker; 
  3.     private boolean isRunning; 
  4.     private long elapsedNanos; 
  5.     private long startTick; 
  6.     @CanIgnoreReturnValue 
  7.     public Stopwatch start() { 
  8.         Preconditions.checkState(!this.isRunning, "This stopwatch is already running."); 
  9.         this.isRunning = true
  10.         this.startTick = this.ticker.read(); 
  11.         return this; 
  12.     } 
  13.  
  14.     @CanIgnoreReturnValue 
  15.     public Stopwatch stop() { 
  16.         long tick = this.ticker.read(); 
  17.         Preconditions.checkState(this.isRunning, "This stopwatch is already stopped."); 
  18.         this.isRunning = false
  19.         this.elapsedNanos += tick - this.startTick; 
  20.         return this; 
  21.     } 
  22.     // 忽略其他源码... 

从上述源码中可以看出 Stopwatch 对象中调用了 ticker 类来实现时间统计的,那接下来我们进入 ticker 类的实现源码:

  1. public abstract class Ticker { 
  2.     private static final Ticker SYSTEM_TICKER = new Ticker() { 
  3.         public long read() { 
  4.             return Platform.systemNanoTime(); 
  5.         } 
  6.     }; 
  7.     protected Ticker() { 
  8.     } 
  9.     public abstract long read(); 
  10.     public static Ticker systemTicker() { 
  11.         return SYSTEM_TICKER; 
  12.     } 
  13. final class Platform { 
  14.     private static final Logger logger = Logger.getLogger(Platform.class.getName()); 
  15.     private static final PatternCompiler patternCompiler = loadPatternCompiler(); 
  16.  
  17.     private Platform() { 
  18.     } 
  19.  
  20.     static long systemNanoTime() { 
  21.         return System.nanoTime(); 
  22.     } 
  23.     // 忽略其他源码... 

从上述源码可以看出 Google Stopwatch 实现时间统计的本质还是调用了 Java 内置的 System.nanoTime() 来实现的。

结论

对于所有框架的 StopWatch 来说,其底层都是通过调用 Java 内置的 System.nanoTime() 得到两个时间,开始时间和结束时间,然后再通过结束时间减去开始时间来统计执行时间的。

总结

本文介绍了 6 种实现代码统计的方法,其中 3 种是 Java 内置的方法:

  • System.currentTimeMillis()
  • System.nanoTime()
  • new Date()

还介绍了 3 种常用框架 spring、commons-langs3、guava 的时间统计器 StopWatch。

在没有用到 spring、commons-langs3、guava 任意一种框架的情况下,推荐使用 System.currentTimeMillis() 或 System.nanoTime() 来实现代码统计,否则建议直接使用StopWatch 对象来统计执行时间。

知识扩展—Stopwatch 让统计更方便

StopWatch 存在的意义是让代码统计更简单,比如 Guava 中 StopWatch 使用示例如下:

  1. import com.google.common.base.Stopwatch; 
  2.  
  3. import java.util.concurrent.TimeUnit; 
  4.  
  5. public class TimeIntervalTest { 
  6.     public static void main(String[] args) throws InterruptedException { 
  7.         // 创建并启动计时器 
  8.         Stopwatch stopwatch = Stopwatch.createStarted(); 
  9.         // 执行时间(1s) 
  10.         Thread.sleep(1000); 
  11.         // 停止计时器 
  12.         stopwatch.stop(); 
  13.         // 执行统计 
  14.         System.out.printf("执行时长:%d 毫秒. %n"
  15.                 stopwatch.elapsed(TimeUnit.MILLISECONDS)); 
  16.         // 清空计时器 
  17.         stopwatch.reset(); 
  18.         // 再次启动统计 
  19.         stopwatch.start(); 
  20.         // 执行时间(2s) 
  21.         Thread.sleep(2000); 
  22.         // 停止计时器 
  23.         stopwatch.stop(); 
  24.         // 执行统计 
  25.         System.out.printf("执行时长:%d 秒. %n"
  26.                 stopwatch.elapsed(TimeUnit.MILLISECONDS)); 
  27.     } 

我们可以使用一个 Stopwatch 对象统计多段代码的执行时间,也可以通过指定时间类型直接统计出对应的时间间隔,比如我们可以指定时间的统计单位,如秒、毫秒、纳秒等类型。

原文链接:https://mp.weixin.qq.com/s/e5UeSfygPUWf49AtD0RgMQ

 

责任编辑:武晓燕 来源: Java中文社群
相关推荐

2018-07-18 15:13:56

MCU代码时间

2010-09-08 15:00:03

SQL语句执行

2012-01-10 10:44:36

字符串

2010-11-18 15:53:30

Oracle语句执行时

2021-02-24 11:44:35

语言计算函数嵌入式系统

2009-11-26 11:05:44

PHP计算页面执行时间

2024-05-10 08:44:53

C#软件开发优化代码

2011-05-17 13:32:04

oracle

2025-01-16 07:00:00

AOPSpringBoot后端

2023-01-27 15:28:04

开发Python内存

2010-09-06 13:17:19

SQL Server语句

2010-04-28 12:33:36

Oracle自定义函数

2024-04-12 07:50:40

Python监控利器Time 模块

2024-07-03 13:51:02

SQL毛刺数据库

2019-08-28 07:45:45

数据存储层多线程

2020-08-03 16:00:31

Linux命令进程

2018-11-22 09:15:45

Linux命令进程

2021-11-05 07:47:55

API计算任务

2020-12-25 08:52:53

SQLMysql 数据库

2024-05-07 08:55:46

C#软件开发代码执行时间
点赞
收藏

51CTO技术栈公众号