0
你好,我遇到了这个错误,而试图运行这个程序,我想不出有什么地方错了:在错误过滤程序:异常线程“main” java.lang.ArrayIndexOutOfBoundsException:0
异常线程 “主要” java.lang.ArrayIndexOutOfBoundsException:0 在PercolationStats.main
这里是代码:
/****************************************************************
* Compilation: javac PercolationStats.java
* Execution: java PercolationStats N T
* Dependencies: Percolation.java, StdStats.java, StdRandom.java,
* StdOut.java
*
* % java PercolationStats 20 1000
* mean = 0.591100
* stddev = 0.046068
* 95% confidence interval = 0.582071, 0.600129
*
* % java PercolationStats 200 100
* mean = 0.593257
* stddev = 0.016242
* 95% confidence interval = 0.592251, 0.594264
*
***************************************************************/
public class PercolationStats {
private int experimentsCount;
private Percolation pr;
private double[] fractions;
public PercolationStats(int N, int T) {
if (N <= 0 || T <= 0) {
throw new IllegalArgumentException("Given N <= 0 || T <= 0");
}
experimentsCount = T;
fractions = new double[experimentsCount];
for (int expNum = 0; expNum < experimentsCount; expNum++) {
pr = new Percolation(N);
int openedSites = 0;
while (!pr.percolates()) {
int i = StdRandom.uniform(1, N + 1);
int j = StdRandom.uniform(1, N + 1);
if (!pr.isOpen(i, j)) {
pr.open(i, j);
openedSites++;
}
}
double fraction = (double) openedSites/(N * N);
fractions[expNum] = fraction;
}
}
public double mean() {
return StdStats.mean(fractions);
}
public double stddev() {
return StdStats.stddev(fractions);
}
public double confidenceLo() {
return mean() - ((1.96 * stddev())/Math.sqrt(experimentsCount));
}
public double confidenceHi() {
return mean() + ((1.96 * stddev())/Math.sqrt(experimentsCount));
}
public static void main(String[] args) {
int N = Integer.parseInt(args[0]);
int T = Integer.parseInt(args[1]);
PercolationStats ps = new PercolationStats(N, T);
String confidence = ps.confidenceLo() + ", " + ps.confidenceHi();
StdOut.println("mean = " + ps.mean());
StdOut.println("stddev = " + ps.stddev());
StdOut.println("95% confidence interval = " + confidence);
}
}
当你调用你的主要方法时,你传递参数吗? – user2336315 2014-11-01 14:53:12