1、增强for循环:主要用于对数组或者集合进行循环

package struct;

public class ForDemo03 {
    public static void main(String[] args) {
        int[] numbers = {10,20,30,40,50}; //定义了一个数组

        for (int x:numbers){  //遍历数组,将值赋给x
            System.out.println(x);
        }
    }
}
Posted on 2021-09-21 14:30  阿黎~  阅读(16)  评论(0编辑  收藏  举报