これはおそらく非常に簡単な答えですが、何を検索して見つければよいのかわからないので、質問するのが最善だと思いました。
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
}
}