为了账号安全,请及时绑定邮箱和手机立即绑定

代码没有提示错误,但是却运行不了

class Hobbits {
		String name;
		public static void main(String [] args) {
		Hobbits [] h = new Hobbits[3];
		int z = 0;
		while (z < 4) {
		z = z + 1;
		h[z] = new Hobbits();
		h[z].name = "bilbo";
		if (z == 1) {
		h[z].name = "frodo";
		}
		if (z == 2) {
		h[z].name = "sam";
		}
		System.out.print(h[z].name + " is a ");
		System.out.println("good Hobbit name");
		}
		}
		}

这个到底是什么原因呢?

正在回答

1 回答

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 3

这个错误是数组长度越界了,改成 while(x < 3)

0 回复 有任何疑惑可以回复我~
#1

差不多先生1234 提问者

非常感谢!
2016-05-02 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

代码没有提示错误,但是却运行不了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信