JDK5.0新增的foreach循环

it2023-02-08  47

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( 集合中元素的类型 局部变量:集合对象) for(Object obj:coll){ System.out.println(obj); } }
最新回复(0)