增强for循环 一般用于遍历输出 数组和集合元素
输出数组元素
int[] array={1,2,3,4,5};
for(int element:array){
System.out.println(element);
}
/*
输出结果:
1
2
3
4
5
*/
输出集合元素
List<String> lists=new ArrayList<String>();
lists.add("hello!");
lists.add("My");
lists.add("name");
lists.add("is");
lists.add("maxwell");
for(String s:lists){
System.out.println(s);
}
/*
输出结果:
hello!
My
name
is
maxwell
*/
so easy. |