这可能是一个非常简单的答案,但我什至不确定要搜索什么才能找到它,所以我想我最好问一下。
我真的不明白如何创建一个我可以在整个 java 程序中使用的变量(特别是一个数组)?该变量需要通过多种方法访问,其大小由用户输入(args)设置。任何人都可以对此有所了解吗?为任何帮助而欢呼。
Public class example{
//this is the array that needs accessing from multiple places
int anArray[][];
public static void main(String args[]){
int size = 5;
add1(size);
add2(size);
}
public static void add1(int size){
//seeing as the size of the array is being defined by the user input, it's created here after being passed the size argument.
}
public static void add2(int size){
//add more content to the array here
}
}