什么是 java.lang.ArrayIndexOutOfBoundsException: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从本质上讲,这意味着:
It means, in essence:
这意味着您尝试写入空数组。
来自
ArrayIndexOutOfBoundsException
的 javadoc:因此,0 >= 数组的大小,因此数组为空。
It means you try to write into empty array.
From javadoc of
ArrayIndexOutOfBoundsException
:So, 0 is >= size of your array, so your array is empty.