什么是 java.lang.ArrayIndexOutOfBoundsException: 0?

发布于 2024-10-26 17:43:06 字数 138 浏览 1 评论 0原文

谢谢大家之前回答问题。 这里我还有另一个问题。我有一个例外 java.lang.ArrayIndexOutOfBoundsException: 0 当我将数组写为 ArrayBoolean

我试图通过谷歌找到但找不到。 如果你知道请分享给我。

Thank you all for answering before questions.
Here I have another problem. I got an exception
java.lang.ArrayIndexOutOfBoundsException: 0 when I write the Array as
ArrayBoolean

I tried to find through google but couldn't.
If you know share me please.

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

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

发布评论

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

评论(2

樱花落人离去 2024-11-02 17:43:06

从本质上讲,这意味着:

 int[] array = new int[0];
 array[0] = 0;

It means, in essence:

 int[] array = new int[0];
 array[0] = 0;
风情万种。 2024-11-02 17:43:06

这意味着您尝试写入空数组。

来自 ArrayIndexOutOfBoundsException 的 javadoc:

 * Thrown to indicate that an array has been accessed with an 
 * illegal index. The index is either negative or greater than or 
 * equal to the size of the array. 

因此,0 >= 数组的大小,因此数组为空。

It means you try to write into empty array.

From javadoc of ArrayIndexOutOfBoundsException:

 * Thrown to indicate that an array has been accessed with an 
 * illegal index. The index is either negative or greater than or 
 * equal to the size of the array. 

So, 0 is >= size of your array, so your array is empty.

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