流程控制-增强For循环

增强For循环

  • 数组的创建: int[] numbers = {10,20,30,40,50};

代码

package com.frey.struct;

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

        //遍历数组的元素
        for (int x:numbers)
        {
            System.out.println(x);
        }
    }
}

上一篇:40-redis集群的搭建


下一篇:你可能错过的40个macOS Monterey提示、技巧和功能