1. 程式人生 > >遍歷數組 foreach

遍歷數組 foreach

col 輸出 ati code array [] clas reac ++

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