黑马程序员技术交流社区

标题: 高级for循环怎么用???? [打印本页]

作者: liufeibo    时间: 2015-9-21 20:23
标题: 高级for循环怎么用????
高级for循环怎么用????     大神,最好能举例,谢谢
作者: 乐滋滋儿    时间: 2015-9-21 20:25
什么是高级for循环
作者: maxwell247    时间: 2015-9-21 20:31
增强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.




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2