如何查看代码在InteliJ中运行所花费的时间?
答案 0 :(得分:12)
我认为你不能使用Intellij,你必须使用像 Yourkit 这样的分析器来分析代码或使用 System.currentTimeInMillis()。或者,您可以使用 Apache Commons StopWatch 进行一些基准测试:
StopWatch stopwatch = new StopWatch();
stopwatch.start();
... some code...
stopwatch.stop();
long timeTaken = stopWatch.getTime()
编辑:Intellij有一个插件可以使用VisualVM进行分析,你可以将它作为另一种选择安装。