二维数组 循环

public static void main(String[] args){
        String id = "10000";
         String str = null;
          String[][] s = new String[][] {
                { "0", "tes1" }, { "01", "test2" }, { "02", "test3" },
                { "03", "test4" }};
         for(int i=0;i<s.length; i++){
            if(s[i][0].equals(id)){
                str = s[i][1];
            }
        }
    }

你可能感兴趣的:(二维数组 循环)