一个方法的执行时间耗时比较高,用以下的代码统计耗时发现整个方法耗时长,但是单次循环的耗时又很小。整个方法 for 循环外没有其他代码,代码如下,某次耗时如下。并非每次都这样,但都是 cost 比 cost1 加起来要大,循环次数不会很大,1-10 次左右。 环境:jdk1.8,IDEA2021
fun(){
long st = System.currentTimeMillis();
for(xxx){
long st1 = System.currentTimeMillis();
xxxxx
long et1 = System.currentTimeMillis();
System.out.println("cost1:" + (et1-st1));
}
long et = System.currentTimeMillis();
System.out.println("cost:" + (et-st));
}
cost1:16
cost1:13
cost1:16
cost1:2
cost:168
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.