首页 > 代码库 > 遍历数组 foreach

遍历数组 foreach

package com.java.array;

public class Myforeach {
    public static void main(String[] ARGS){
        /*  int arr[] = {2,3,6,7};*/

        /* for(int x : arr){
            System.out.println(x);
        }*/

            //使用普通的 for循环
        /*for(int i = 0; i<arr.length; i++){
            System.out.println(arr[i]);
        }*/
        //遍历文字 数组
        /*String ys []={"SFAS","张三"};
            for (String c : ys){
                System.out.println(c);
            }*/
        String ks []  = {"狗贼","嘿嘿","滑稽"};
        boolean fz = false;
        /*for (int i = 0; i < ks.length && !fz; i++){
            if (ks[i]=="滑稽"){
                String k = ks[i];
                System.out.println(k);
                fz=true;
                break;
            }
        }*/

        //使用foreach的方式进行 输出
        /* for (String x: ks
             ) {
            if (x =="狗贼") {
                System.out.println(x);
            }
        }*/
           /* for (int i = 0; i < arr.length; i++){
                for (int j = 0; j < arr[i].length ; j++){
                    System.out.println(arr[i][j]+"/");
                }
            }*/

            //遍历二维数组
        int arr[][] = { { 1 }, { 2, 3 }, { 4, 5, 6 }, { 7, 8, 9, 10 } };
        /*for (int x = 0; x < arr.length; x++) {
            for (int y = 0; y < arr[x].length; y++) {
                System.out.print(arr[x][y] + "、");
            }
            System.out.println("");
        }*/

        for (int c[] : arr){
            for (int j : c){
                System.out.println(j+".");
            }
            System.out.println("");
        }
    }
}

这个就是我自己需要看看的一些东西 毕竟记得起来的才是好的这个没什么好看的

遍历数组 foreach