有没有办法做到这一点,所以我没有64个if语句?

时间:2019-11-15 23:47:59

标签: java arrays loops io

有人告诉我从txt文件创建一个2D数组,该文件包含“ carModel,carColor”,后跟新行。 2D数组为8x8,每当出现某种carmore和carcolor时,代表其计数的各自的[x] [y]坐标就会增加1。

到目前为止,我已经阅读了文件,从文件创建了2D数组,并使用2D数组和每个插槽填充了零的位置创建了输出,但是我似乎唯一想办法更新每个模型的方法颜色计数是如果我手动制作64个if语句来检查它们是否出现在列表中n次以上。 当然必须有另一种方法吗?

例如,当我的扫描仪读取列表时,我需要它检查列表是否重复了汽车模型,汽车颜色,如果是,请更新该汽车品牌和颜色的计数。

这是我到目前为止的代码:

public static void main (String [] args) throws Exception
{
    String [][] cars = new String [8][8]; 
    ArrayList <String> colors = new ArrayList<>();
    colors.add("BLUE  ");
    colors.add("BLACK ");
    colors.add("BROWN ");
    colors.add("GREEN ");
    colors.add("RED   ");
    colors.add("SILVER");
    colors.add("WHITE ");
    Collections.sort(colors);
    ArrayList <String> models = new ArrayList<>();
    models.add("Escape  ");
    models.add("Explorer");
    models.add("F150    ");
    models.add("F250    ");
    models.add("Flex    ");
    models.add("Mustang ");
    models.add("Taurus  ");
    Collections.sort(models);
    cars [0][0] = "_____  ";
    for (int a = 1; a < cars.length; a++)
    {
        cars[0][a] = (models.get(a-1)) + " ";
    }
    for (int b = 1; b < cars.length; b++)
    {
        cars[b][0] = (colors.get(b-1)) + " ";
    }
    for (int fir = 1; fir < cars.length; fir++)
    {
        for (int sec = 1; sec < cars[1].length; sec++)
        {
            if (cars[fir][sec] == null)
            {
                cars[fir][sec] = "0        ";
            }
        }
    }       
    for (int first = 0; first < cars.length; first++)
    {
        for (int second = 0; second < cars[first].length; second++)
        {
            System.out.print(cars[first][second]);
        }
        System.out.println();
    }        
    File file = new File ("C:\\Users\\delta\\Documents\\NetBeansProjects\\SchoolWork\\cars.txt");
    Scanner sc = new Scanner(file);
    String ab = sc.nextLine();
        while (ab != null)
        {
            String [] nums = sc.nextLine().split(" ");
            for (int i = 0; i < nums.length;i++)
            {                  
               System.out.println(nums[i]);                    
            }               
        }        
}

输出应该看起来像这样: enter image description here

1 个答案:

答案 0 :(得分:1)

您需要做的是使用ArrayList.indexOf()方法。

  1. 获取颜色的索引。
  2. 获取模型的索引。

然后使用它们设置或递增8x8数组中的条目。每次阅读汽车的颜色和型号时。


    int[][] count = new int[][];

    while (reading in data) {
       get color
       get model
       int row = modelList.indexOf(model)
       int col = colorList.indexOf(color)
       count[row][col]++
    }

我还建议您修剪颜色和模型周围的空白区域。这样会使调试变得困难,并且只要使用System.out.printf(),就不需要格式化输出。