其他分享
首页 > 其他分享> > 增强for循环

增强for循环

作者:互联网

增强for循环

java5引入了一种主要用于数组或集合的增强型for循环

语法格式如下:

for (  声明语句 : 表达式  )
{
//代码句子
}
package com.chen.cm.struct;

public class ForDemo05 {
    public static void main(String[] args) {
        
        int[] numbers={10,20,30,40,50};//定义了一个数组
        
        for (int i = 0; i < 5; i++) {
            System.out.println(numbers[i]);
        }
        System.out.println("====================");
        //遍历数组的元素,增强for循环实现
        for(int x:numbers){
            System.out.println(x);
        }
        
    }
}

标签:增强,int,System,循环,numbers,println,out
来源: https://www.cnblogs.com/molly-5049/p/16244693.html