集合的三种遍历方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了集合的三种遍历方式相关的知识,希望对你有一定的参考价值。
1、for循环
代码实现:
for(int i=0;i<list.size();i++){
product p=list.get(i);
System.println(p);
}
2、迭代器
Iterator<product> it = list.iterator();//product是一个类
whlie(it.hasNext());{//判断是否有下一个元素
product t=it.next();//得到下一个元素
system.println(t);
}
3、for each循环
for(product p : list){
sysrtem.println(p);
}
以上是关于集合的三种遍历方式的主要内容,如果未能解决你的问题,请参考以下文章