二元运算符的坏操作数类型。为什么这不起作用?

时间:2014-02-06 22:58:16

标签: java

我很困惑为什么这不起作用。假设将所有表[count]设置为null但它不会让我。

public HashTable(int sz) {

    // Count to initalize all to null
    int counter = 0;

    // Initalizes the global size to the
    // sz passed in
    size = sz;

    // Initalizes
    table = new Base[size];
    probeCount = new int[size];

    // Initalizes all to null
    while (counter <= probeCount) {
        table[count] = null;
        counter++;
    }
}

1 个答案:

答案 0 :(得分:2)

这可能就是你想要做的。你在比较两件不同的事情。你想比较大小

        // Initalizes all to null
        while (counter <= size)/ {

            table[count] = null;
            counter++;
        }