2

我对编码很陌生,对vb的了解有限。我试图在 java 中掌握这些知识,并试图创建一个简单的搜索 java 程序,该程序根据输入和输出信息搜索数组,以帮助了解循环和多维数组。

我不确定为什么我的代码不起作用,

package beers.mdarray;

import java.util.Scanner;

public class ProductTest
{
    public static void main(String[] arg)
    {
        String [][] beer = { {"TIGER", "2"}, {"BECKS", "2"}, {"STELLA", "3"} }; //creating the 2 by 3 array with names of beer and their corresponding stock levels.
        System.out.print("What beer do you want to find the stock of?: ");

        Scanner sc = new Scanner(System.in);
        String beerQ = sc.next(); // asking the user to input the beer name

        int tempNum = 1;
        if (!beerQ.equals(beer[tempNum][1]))
        {
            tempNum = tempNum + 1; //locating he location of the beer name in the array using a loop to check each part of the array.
        }
        System.out.println(beer[tempNum][2]); //printing the corresponding stock.
    }
}

这是我得到的输出但是我不确定它的含义:

What beer do you want to find the stock of?: BECKS
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2
at beers.mdarray.ProductTest.main(ProductTest.java:20)

尽管它看起来像一个简单的问题,但使用搜索功能我找不到太多关于我的问题的信息。

可能有一种更简单的方法来做我正在尝试的事情,我会对此感兴趣,但我也想知道为什么我的方法不起作用。

4

2 回答 2

5

数组索引从0N - 1,其中N是数组中元素的数量。所以 的索引是包含元素2的数组末尾的一个:2

System.out.println(beer[tempNum][2]);
                              // ^ only 0 and 1 are valid.

请注意, 的初始化tempNum从数组中的第二个元素开始,啤酒的名称实际上在beer[tempNum][0].

有关详细信息,请参阅 Java 语言规范的数组章节。

只需提及可用于迭代数组的扩展 for 循环:

String [][] beers = { {"TIGER",  "2"},
                      {"BECKS",  "2"},
                      {"STELLA", "3"} }; 

for (String[] beer: beers)
{
    if ("BECKS".equals(beer[0]))
    {
        System.out.println(beer[1]);
        break;
    }
}

使用多维数组的替代方法是使用其中一种Map实现,其中啤酒的名称是键,库存水平是值:

Map<String, Integer> beers = new HashMap<String, Integer>();
beers.put("TIGER",  9);
beers.put("BECKS",  2);
beers.put("STELLA", 3);

Integer stockLevel = beers.get("BECKS");
if (stockLevel != null)
{
    System.out.println(stockLevel);
}
于 2012-11-21T10:13:13.253 回答
0

在您询问问题的另一种解决方案的部分中,您可以尝试以下操作:

package com.nikoskatsanos.playground;

import java.util.Scanner;

public class ProductTest
{
    public static void main(String[] arg)
    {
        String [][] beer = { {"TIGER", "2"}, {"BECKS", "2"}, {"STELLA", "3"} }; //creating the 2 by 3 array with names of beer and their corresponding stock levels.
        System.out.print("What beer do you want to find the stock of?: ");

        Scanner sc = new Scanner(System.in);
        String beerQ = sc.next(); // asking the user to input the beer name

        boolean found = false;
        int index = 0;
        while(!found) {
            if(beer[index][0].equals(beerQ.toUpperCase())) {
                found = true;
                continue;
            }
            index ++;
        }
        System.out.println("The stock of " + beerQ + " is " + beer[index][1]); //printing the corresponding stock.
    }
}

您最好按照 oracle 网站上的教程进行操作。它们非常好,您将非常快速地学习 java 的基础知识。

http://docs.oracle.com/javase/tutorial/

于 2012-11-21T10:36:31.547 回答