增强for循环:
增强for循环 原理就是迭代原理
JDK1.5之后新增的一个特性 高级for循环 【for each】
格式:
for(元素的数据类型 变量 : Collection集合或者数组){ 操作代码 }
注:在迭代过程中不要对集合元素进行删除和添加操作
举例:
//这是个Collection集合
Collection<String> coll = new ArrayList<>();
coll.add("小明");
coll.add("小刘");
coll.add("小王");
coll.add("小孙");
coll.add("小丽");
这里增强for循环遍历
for (String name : coll) { //操作代码 System.out.println(name); }