在eclipse中,我无法找到如何让IDE显示程序执行所花费的时间。我已经检查了帮助和Google搜索,但我找不到任何内容
我不想写startTime,每个& amp;周围的endTime代码。每一行。 有没有什么办法可以在eclipse或eclipse插件中完成,而无需编写代码。
答案 0 :(得分:0)
long startTime = System.nanoTime();
// ... the code being measured ...
long estimatedTime = System.nanoTime() - startTime;