当前位置: > Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException:0 at Point.main(Point.java:15)...
题目
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException:0 at Point.main(Point.java:15)
public class points {
protected int x,y;
public points(){setPoint(0,0);}
public points(int a,int b){setPoint(a,b);}
public void setPoint(int a ,int b){
x=a;
y=b;
}
public int getX(){return x;}
public int getY(){return y;}
public String toString()
{return "[" +x+","+y+"]";}
}
但是运行的时候不对……就是一行上面的字

提问时间:2021-04-01

答案
这个异常是初学者比较常见的异常.ArrayIndexOutOfBoundsException:注意这个单词,字面意思就是数组引用超出界限,也就是我们常说的越界问题.比如,我们创建了一个数组 int a[] = new int[4] ;那么数组a只能存放四个元素...
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
1,人们染上烟瘾,最终因吸烟使自己丧命.
版权所有 CopyRight © 2012-2019 超级试练试题库 All Rights Reserved.