-1

我似乎找不到编写类数组的正确方法。在这种形式下,编译时不会引发错误,但是当我尝试使用数组/类时会收到错误。类数组在一个名为 HashTable 的类中(我需要自己编写一个作业),我正在使用下面的代码对其进行测试:

theHashTable.insert("aa", "ab");

这是 HashTable 类:

编辑:正如 Aniket 所指出的,文件名没有被初始化。我在下面更正了这一点,但收到了同样的错误。

private class HashTable {       
    private class Value {
        ArrayList<String> fileNames;
        String word;
        Value() {
            fileNames = new ArrayList<String>();
        }
    }

    private int currentSize = 101;
    private Value[] items;
    private HashTable() {
        items = new Value[currentSize];
        for (int i = 0; i < currentSize; i++) items[i] = new Value();
    }

    private int hash(String in) {
        int out = 0;
        for (int i = 0; i < in.length(); i++) out += 37*out+in.charAt(i);
        out %= currentSize;
        if (out < 0) out += currentSize;
        return out;
    }

    public void insert(String inW, String inF) {
        int index = hash(inW);
        index = 0;
        if (items[index].word.length() == 0) {
            items[index].word = inW;
            items[index].fileNames.add(inF);
        }
        else if (items[index].word.compareTo(inW) == 0) items[index].fileNames.add(inF);
        else System.out.println("Collision");
    }
}
4

2 回答 2

2

fileNames类中的 ArrayListValues永远不会被初始化。Values为和 Initialize编写一个构造函数fileNames

于 2012-12-05T03:06:51.287 回答
1

fileNames使用初始化(示例代码中的第 3 行)在您的内部类值中声明为:

     ArrayList<String> fileNames = new  ArrayList<String>();
于 2012-12-05T03:16:49.823 回答