minecraft服务器错误报告java.lang.ArrayIndexOutOfBoundsException: -1如何解决
展开全部
这是JAVA 的 API说的
public class ArrayIndexOutOfBoundsExceptionextends IndexOutOfBoundsException
用非法索引访问数组时抛出的异常。如果索引为负或大于等于数组大小,则该索引为非法索引。
也就是说角标异常!可能的原因是使用的角标大于等于数组的长度或为负数!
class e
{
public static void main(String[] args)
{
int [] arr=new int[2];
System.out.println(arr[2]+" "+arr[-1]);
}
}
以下是异常(就是他提示的错误信息):
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException:2
at e.main(e.java:6)
public class ArrayIndexOutOfBoundsExceptionextends IndexOutOfBoundsException
用非法索引访问数组时抛出的异常。如果索引为负或大于等于数组大小,则该索引为非法索引。
也就是说角标异常!可能的原因是使用的角标大于等于数组的长度或为负数!
class e
{
public static void main(String[] args)
{
int [] arr=new int[2];
System.out.println(arr[2]+" "+arr[-1]);
}
}
以下是异常(就是他提示的错误信息):
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException:2
at e.main(e.java:6)
追问
有什么解决方法吗
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询