初始化 Vector 上的 ArrayIndexOutOfBoundsException

发布于 2024-10-22 00:25:43 字数 529 浏览 2 评论 0 原文

我有这个:

public class DoubleList<Key, Elem> implements ADTDoubleList<Key, Elem> {

    private Vector<Node<Key, Elem>> leftRight = new Vector<Node<Key, Elem>>(2);
    private int[] numLeftNumRight = new int[2];

    public DoubleList() {
        this.leftRight.set(0, null);
        this.leftRight.set(1, null);
        this.numLeftNumRight[0] = 0;
        this.numLeftNumRight[1] = 0;
    }
}

它抛出 ArrayIndexOutOfBoundsException。

我不知道为什么。有人可以帮助我吗?

I have this:

public class DoubleList<Key, Elem> implements ADTDoubleList<Key, Elem> {

    private Vector<Node<Key, Elem>> leftRight = new Vector<Node<Key, Elem>>(2);
    private int[] numLeftNumRight = new int[2];

    public DoubleList() {
        this.leftRight.set(0, null);
        this.leftRight.set(1, null);
        this.numLeftNumRight[0] = 0;
        this.numLeftNumRight[1] = 0;
    }
}

and it throws an ArrayIndexOutOfBoundsException.

I don't know why. Could someone help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盗琴音 2024-10-29 00:25:43

如果该索引尚未被占用,则无法在 Vector 或任何其他 List 中设置元素。通过使用 new Vector>(2) 您可以确保向量最初具有两个元素的容量,但它仍然是空的因此使用任何索引进行get设置或set设置都不起作用。

换句话说,该列表还没有增长到足以使该索引有效的程度。使用这个代替:

this.leftRight.add(null);  //index 0
this.leftRight.add(null);  //index 1

你也可以这样做:

this.leftRight.add(0, null);
this.leftRight.add(1, null);

You can't set an element in a Vector or any other List if that index isn't already occupied. By using new Vector<Node<Key, Elem>>(2) you're ensuring that the vector initially has the capacity for two elements, but it is still empty and so getting or setting using any index won't work.

In other words, the list hasn't grown big enough for that index to be valid yet. Use this instead:

this.leftRight.add(null);  //index 0
this.leftRight.add(null);  //index 1

You could also do:

this.leftRight.add(0, null);
this.leftRight.add(1, null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文