码迷,mamicode.com
首页 > 其他好文 > 详细

增强for循环

时间:2021-06-02 13:28:20      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:for   new   array   数据   遍历数组   java   集合   col   操作   

增强for循环

增强for循环是JDK1.5以后出来的一个高级for循环,专门用来遍历数组和集合的。他的内部原理其实是个Iterator迭代器,所以在遍历过程中,不能对集合中的元素进行增删操作。

格式:

for(元素的数据类型 变量 : Collection集合 or 数组){
    
}

它用于遍历Collection数组。通常只进行遍历元素,不要在遍历过程中对集合元素进行增删操作。

遍历数组

int[] arr = new int[]{11,22,33};

for (int n : arr) {

  //变量n代表被遍历到的数组元素

  System.out.println(n);

}

遍历集合

Collection<String> coll = new ArrayList<String>();
coll.add("a1");
coll.add("a2");
coll.add("a3");
coll.add("a4");
for(String str : coll){
    //变量Str代表被遍历到的集合元素
    System.out.println(str);
}


增强for循环

标签:for   new   array   数据   遍历数组   java   集合   col   操作   

原文地址:https://www.cnblogs.com/cushionzengblog/p/14819452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!