两行之间的执行时间或eclipse中的函数

时间:2016-09-29 06:52:23

标签: java eclipse performance ide

在eclipse中,我无法找到如何让IDE显示程序执行所花费的时间。我已经检查了帮助和Google搜索,但我找不到任何内容

我不想写startTime,每个& amp;周围的endTime代码。每一行。 有没有什么办法可以在eclipse或eclipse插件中完成,而无需编写代码。

1 个答案:

答案 0 :(得分:0)

long startTime = System.nanoTime();    
// ... the code being measured ...    
long estimatedTime = System.nanoTime() - startTime;

道具: How do I measure time elapsed in Java?