标签:判断 rod ++ next print sys 遍历 ext 迭代器
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);
}
标签:判断 rod ++ next print sys 遍历 ext 迭代器
原文地址:http://www.cnblogs.com/damimao/p/6819280.html