JDK5.0新增的foreach循环,用于遍历集合、数组
@Test
public void test(){
Collection coll
=new ArrayList();
coll
.add(123);
coll
.add(456);
coll
.add(new String("TOM"));
coll
.add(false);
coll
.add("abc");
for(Object obj
:coll
){
System
.out
.println(obj
);
}
}
转载请注明原文地址: https://lol.8miu.com/read-1829.html