如何创建构造函数来设置全局数组的长度?
我已经尝试了几种方法来做到这一点,没有一个成功。
例子:
public Class{
public Class(int length){
double[] array = new double[length]; <- this is not global
L = length;
}
int L;
double[] array = new double[L]; <- this does not work
}
我需要一个长度由构造函数确定的数组。