我是Java編程新手。爲什麼我會收到'ArrayIndexOutOfBoundsException'錯誤?
有人能幫助我用下面的代碼:
public class RandomSeq {
\t public static void main(String[] args) {
\t \t // command-line argument
\t \t int N = Integer.parseInt(args[0]);
\t \t // generate and print N numbers between 0 and 1
\t \t for (int i = 0; i < N; i++) {
\t \t \t System.out.println(Math.random());
\t \t }
\t }
}
我收到在編譯的時候出現以下錯誤信息:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
預先感謝您。
[1]我使用64位Java 8(更新25)SE實現,使用64位Eclipse IDE for Java Developers(v。4.4.1)。
你如何啓動應用程序? – 2014-10-17 04:55:46