java迭代器和for循环优劣详解

网友投稿 304 2022-11-05


java迭代器和for循环优劣详解

在进行迭代的时候,程序运行的效率也是我们挑选迭代方法的重要原因。目前有三种迭代方法:for循环、迭代器和Foreach。前两者相信大家都非常熟悉,为了更加直观分析效率的不同,我们还加入Foreach一起比较。下面我们就三种方法的概念进行理解,然后ArrayList中探索三种方法的效率。

1.概念理解

for循环:是支持迭代的一种通用结构,是最有效,最灵活的循环结构

迭代器:是通过集合的iterator()方法得到的,所以我们说它是依赖于集合而存在的

Foreach:通过阅读源码我们还发现一个Iterable接口。它包含了一个产生Iterator对象的iterator()方法,而且将Iterator对象被foreach用来在序列中移动。对于任何实现Iterable接口的对象都可以使用。

2.效率实例

ArrayList中的效率对比:

List integers = Lists.newArrayList();

for(int i=0;i<100000;i++){

integers.add(i);

}

long start1 = System.currentTimeMillis();

for(int count =0 ;count<10;count++){

for(int i=0;i

int j=integers.get(i);

}

}

System.out.println(String.format("for循环100次时间:%s ms",System.currentTimeMillis()-start1));

long start2 = System.currentTimeMillis();

for(int count =0 ;count<10;count++) {

for (Integer i : integers) {

int j = i;

}

}

System.out.println(String.format("foreach循环100次时间:%s ms",System.currentTimeMillis()-start2));

long start3 = System.currentTimeMillis();

for(int count =0 ;count<10;count++) {

Iterator iterator = iNnGnpAcyRntegers.iterator();

while(iterator.hasNext()){

int j=iterator.next();

}

}

System.out.println(String.format("迭代器循环100次时间:%s ms",System.currentTimeMillis()-start3));

结果:

for循环100次时间:15 ms

foreach循环100次时间:25 ms

迭代器循环100次时间:20 ms

知识点扩展:

增强for循环:foreach

在java 5.0提供了一种新的迭代访问 Collection和数组的方法,就是foreach循环。使用foreach循环执行遍历操作不需获取Collection或数组的长度,也不需要使用索引访问元素。

int j=integers.get(i);

}

}

System.out.println(String.format("for循环100次时间:%s ms",System.currentTimeMillis()-start1));

long start2 = System.currentTimeMillis();

for(int count =0 ;count<10;count++) {

for (Integer i : integers) {

int j = i;

}

}

System.out.println(String.format("foreach循环100次时间:%s ms",System.currentTimeMillis()-start2));

long start3 = System.currentTimeMillis();

for(int count =0 ;count<10;count++) {

Iterator iterator = iNnGnpAcyRntegers.iterator();

while(iterator.hasNext()){

int j=iterator.next();

}

}

System.out.println(String.format("迭代器循环100次时间:%s ms",System.currentTimeMillis()-start3));

结果:

for循环100次时间:15 ms

foreach循环100次时间:25 ms

迭代器循环100次时间:20 ms

知识点扩展:

增强for循环:foreach

在java 5.0提供了一种新的迭代访问 Collection和数组的方法,就是foreach循环。使用foreach循环执行遍历操作不需获取Collection或数组的长度,也不需要使用索引访问元素。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:ems邮件查询API(ems邮件查询app)
下一篇:我可以修改schema吗--schema和登录user的关系
相关文章

 发表评论

暂时没有评论,来抢沙发吧~