初始化 Vector 上的 ArrayIndexOutOfBoundsException
我有这个:
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。
我不知道为什么。有人可以帮助我吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果该索引尚未被占用,则无法在
Vector
或任何其他List
中设置元素。通过使用new Vector>(2)
您可以确保向量最初具有两个元素的容量,但它仍然是空的因此使用任何索引进行get
设置或set
设置都不起作用。换句话说,该列表还没有增长到足以使该索引有效的程度。使用这个代替:
你也可以这样做:
You can't set an element in a
Vector
or any otherList
if that index isn't already occupied. By usingnew Vector<Node<Key, Elem>>(2)
you're ensuring that the vector initially has the capacity for two elements, but it is still empty and soget
ting orset
ting 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:
You could also do: