私は大学でやっている小さな掃除機ゲームのための基本的なものをコーディングしたいと思っています。今私のコードに問題があります。戻り値新しいint [] {randomHeight、randomWidth};
public class Minesweeper1 {
public static int[][] makeRandomBoard(int s, int z, int n){
//creating the field and fill with 0
int feld[][] = new int [s][z];
for(int i = 0; i < s; i++){
for(int j = 0; j < z; j++){
feld[i][j] = 0;
}
}
//n-times to fill the field
for(int i = 0; i < n; i++){
selectRandomPosition(s, z);
//want to get them from selectRandomPosition
feld[randomHeight][randomWidth] = 1;
}
}
}
だから、selectRandomPosition
コード開始します。ここでは
public static int[] selectRandomPosition(int maxWidth, int maxHeight) {
int randomHeight = StdRandom.uniform(0, maxHeight);
int randomWidth = StdRandom.uniform(0, maxWidth);
return new int[]{randomHeight, randomWidth};
}
を私が何かを変更することができますが、それは新しい配列を返していませんよ。今私の質問makeRandomBoard
メソッドで新しい配列を使用することができます、私は配列の名前を知らないので、私の質問です。 feld[randomHeight][randomWidth] = 1;
を使用すると、これらの変数がわからないことがわかります。
可能な複製をhttp://stackoverflow.com/questions/2378756/how-to-store-配列から返されるメソッドのJavaで) – BackSlash
'randomHeight'と' randomWidth'は 'selectRandomPosition'関数のローカル変数です。この関数の外でこれらの変数を使用することはできません。 – McNets
@mcNets私はそれを知っていますが、私の質問は、どの講義でもそれがなかったので、配列の名前がなくてもそこにどのようにそれらを置くのかということでした。 – FireCross