如何在Java中计算方法的执行时间?

我如何获得方法的执行时间? 是否有定时器实用程序类,用于计时任务需要多长时间等等?

Google上的大多数搜索都会返回定时器的结果,以计划线程和任务,这不是我想要的。


总有一种老式的方式:

long startTime = System.nanoTime();
methodToTime();
long endTime = System.nanoTime();

long duration = (endTime - startTime);  //divide by 1000000 to get milliseconds.

我用简单的答案去。 适用于我。

long startTime = System.currentTimeMillis();

doReallyLongThing();

long endTime = System.currentTimeMillis();

System.out.println("That took " + (endTime - startTime) + " milliseconds");

它工作得很好。 分辨率显然只有毫秒,你可以用System.nanoTime()做得更好。 这两种操作系统都有一些限制(操作系统时间片等),但是这种方式非常有效。

在一些运行中平均(越多越好),你会得到一个体面的想法。


拜托了伙计们! 没有人提到番石榴的方式来做到这一点(这可以说是很棒):

import com.google.common.base.Stopwatch;

Stopwatch timer = Stopwatch.createStarted();
//method invocation
LOG.info("Method took: " + timer.stop());

好的是Stopwatch.toString()在测量中选择时间单位做得很好。 也就是说,如果值很小,它将输出38 ns,如果它很长,它将显示5m 3s

更好:

Stopwatch timer = Stopwatch.createUnstarted();
for (...) {
   timer.start();
   methodToTrackTimeFor();
   timer.stop();
   methodNotToTrackTimeFor();
}
LOG.info("Method took: " + timer);

注意:Google Guava需要Java 1.6+

链接地址: http://www.djcxy.com/p/38933.html

上一篇: How do I time a method's execution in Java?

下一篇: Schedule emails to deliver later in a web application