Collection Iterator 迭代器
Posted 为了八千块
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Collection Iterator 迭代器相关的知识,希望对你有一定的参考价值。
Collection c=new ArrayList();
c.add(123);
//迭代器遍历集合
Iterator i=c.Iterator();
while(i.hasNext())
{
System.out.println(i.next());
}
//增强for循环 遍历
for(object i:c)
{
System.out.println(i);
}
以上是关于Collection Iterator 迭代器的主要内容,如果未能解决你的问题,请参考以下文章