我只是工作的一個簡單的程序很容易與循環和while循環, 和ArrayIndexOutOfBoundsException
發生。如何解決此代碼中的ArrayIndexOutOfBoundsException?
這裏是我的代碼:
public class ForWhileLoops
{
public static void main(String[] args)
{
int[] mary = new int[30];
for(int a = 0; a < 31; a++)
{
mary[a]= a*3;
}
for(int b = 0; b < 31; b++)
{
System.out.println(mary);
}
int c = 0;
while(c < 31)
{
c++;
System.out.println(c);
}
}
}
這裏是所發生的錯誤:
java.lang.ArrayIndexOutOfBoundsException: 30
at ForWhileLoops.main(ForWhileLoops.java:9)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at edu.rice.cs.drjava.model.compiler.JavacCompiler.runCommand(JavacCompiler.java:272)
有效的答案是低於,但如果您在打印瑪利亞陣列時看到30行垃圾文本,請勿混淆。例如,請參閱http://stackoverflow.com/questions/409784/whats-the-simplest-way-to-print-a-java-array –