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

增强for循环

时间:2018-06-10 20:08:01      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:list   AC   一维数组   增强for循环   语法   二维数组   ack   div   IV   

增强的for循环是在传统的for循环中增加的强大的迭代功能的循环,是在jdk1.5之后提出来的。

基本语法格式:

for(type 变量名:集合变量名){……}                       //把迭代的变量放在括号中,冒号后面为集合名

其中:迭代变量必须在()中定义。集合变量可以是数组或实现了iterable接口的集合类。

应用实例模板:

public static<AnyType> void print(Collection<AnyType> coll) {
    for(AnyType item : coll)
    System.out.println(item);
}

应用范围及实例:增强的for循环(泛型)主要是在一维数组、二维数组和List中应用。

publicstatic void main(String[] args) {

      //1、一维数组(普通数组)中的使用

      int array[] = {1,2,3,4,5,6,7};

      //增强for循环

      for(int arritem : array){

         System.out.println(arritem);

      }

      //普通的for循环

      for(int i = 0; i < array.length; i++){

         System.out.println(array[i]);

      }

 

增强for循环

标签:list   AC   一维数组   增强for循环   语法   二维数组   ack   div   IV   

原文地址:https://www.cnblogs.com/xuhaojun/p/9164048.html

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