collection 遍历有两种方式,第一种是转换为数组,第二种是用迭代器.现在先说第一种,用迭代器。
1使用迭代器
package cn.tt5;
import java.util.Collection;
import java.util.ArrayList;
import java.util.Iterator;
public class Test03 {
public static void main(String[] args) {
Collection c=new ArrayList();
Student s1=new Student("hello",12);
Student s2=new Student("word",33);
Student s3=new Student("jav",22);
c.add(s1);
c.add(s2);
c.add(s3);
Iterator it=c.iterator();
while(it.hasNext()){
Student sc=(Student)it.next();
System.out.println(sc.getAge());
}
}
}
|
|