作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图用类似的 block 检查执行时间。
示例代码和输出如下,
public class Tester {
public static void main(String[] args) {
System.out.println("Run 1");
List<Integer> list = new ArrayList<>();
int i = 0;
long st = System.currentTimeMillis();
while (++i < 10000) {
list.add(i);
}
System.out.println("Time taken :" + (System.currentTimeMillis() - st));
System.out.println("Run 2");
int j = 0;
List<Integer> list2 = new ArrayList<>();
long ST = System.currentTimeMillis();
while (++j < 10000) {
list2.add(j);
}
System.out.println("Time taken :" + (System.currentTimeMillis() - ST));
System.out.println("Run 3");
int k = 0;
List<Integer> list3 = new ArrayList<>();
long ST2 = System.currentTimeMillis();
while (++k < 10000) {
list3.add(k);
}
System.out.println("Time taken :" + (System.currentTimeMillis() - ST2));
}
}
输出
Run 1
Time taken :6
Run 2
Time taken :3
Run 3
Time taken :1
为什么我的执行时间不同?
最佳答案
这可能是为了对数组列表进行即时编译和热点优化,但你不能100%确定。
除此之外,您的样本量太小,意义不大。
关于java - 相同的代码块执行时长不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36301187/
我正在做一个从 Apple HealthKit 读取每日步数和 sleep 数据的应用程序。 对于 步骤 ,这很容易,因为它是 HKQuantityType ,所以我可以在其上应用 HKStatist
我仅使用 youtube-dl 从 youtube 视频中提取音频. 我想在下载后将元数据(即艺术家姓名和歌曲名称、年份、专辑、持续时间、流派)写入 mp3/m4a 文件。 我的尝试是从以下代码开始的
我是一名优秀的程序员,十分优秀!