我需要一个公开的数组(类中的其他方法可以访问),但该数组需要一个输入值“T”来创建它。如何实例化需要用户输入的“全局”变量?
我的代码如下:
public class PercolationStats {
**private double myarray[];**
public PercolationStats(int N, int T) {
**double myarray = new double[T];**
for (i=0;i<T;i++) {
Percolation percExperiment as new Percolation(N);
//do more stuff, make calls to percExperiment.publicmethods
myarray[i] = percExperiment.returnvalue;
}
}
public static void main(String[] args) {
int N = StdIn.readInt();
int T = StdIn.readInt();
PercolationStats percstats = new PercolationStats(N, T);
//do more stuff, including finding mean and stddev of myarray[]
StdOut.println(output);
}
伪代码中的另一个示例:
class PercolationStats {
Constructor(N, T) {
new Percolation(N) //x"T" times
}
Main {
new PercolationStats(N, T) //call constructor
}
}
class Percolation {
Constructor(N) {
**new WQF(N)** //another class that creates an array with size dependent on N
}
Main {
**make calls to WQF.publicmethods**
}
}
在第二个示例中,在我看来,我需要在 Percolation 的构造函数中创建类 WQF 的新实例,以便接受参数 N。但是,WQF 不能被 Percolation 的 Main 方法访问。帮助!