我是靠谱客的博主 热情火龙果,最近开发中收集的这篇文章主要介绍for、foreach、Iterator迭代效率,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

public class TestFor {

public static void main(String [] args){

String ss = "aa";

List<Integer> list = new ArrayList<Integer>();

for (int i=0; i<1000;i++){
list.add(i);
}
int size = list.size();
//普通的for
Long l1 = System.currentTimeMillis();
for(int i=0; i<1000; i++){
for(int j=0; j<size; j++){
list.get(j);
}
}
//foreach
Long l2 = System.currentTimeMillis();
for(int i=0;i<1000;i++){
for(Integer obj:list){

}
}
Long l3 = System.currentTimeMillis();
for(int i=0; i<1000; i++){
Iterator it =list.iterator();
while (it.hasNext()){
it.next();
}
}
Long l4 = System.currentTimeMillis();

System.out.println("普通for:"+(l2-l1));
System.out.println("foreach:"+(l3-l2));
System.out.println("Iterator:"+(l4-l3));

}

}

测试结果当迭代次数较小时,效果不明显,当把遍历次数增大,10000,结果显示为:

可以看出普通for循环是效率最高的。foreach是效率最低的。

最后

以上就是热情火龙果为你收集整理的for、foreach、Iterator迭代效率的全部内容,希望文章能够帮你解决for、foreach、Iterator迭代效率所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部