私は、抽象データ型「ArrayIntLog」を利用する単純なプログラム (TestLuck) に取り組んでいる学生です。ユーザーが決定した量のログを生成し、「compare()」メソッドを使用して、一致が見つかる前にループされたログエントリの数を確認することになっています。次のエラーが表示されます。
TestLuck.java:27: エラー: 変数 totalRuns が初期化されていない可能性があります totalRuns += currentRun; ^
これらの変数を間違って初期化するにはどうすればよいですか? forループ内でそれらを使用しているという事実と関係がありますか?
public class TestLuck{
public static void main (String [] args){
Random rand = new Random();
int n = rand.nextInt(100); // gives a random integer between 0 and 99.
Scanner kbd = new Scanner(System.in);
double average = 0;
int totalRuns, currentRun, upperLimit = 0;
System.out.println("Enter the upper limit of the random integer range: ");
ArrayIntLog arr = new ArrayIntLog(kbd.nextInt());
System.out.println("Enter the number of times to run the test: ");
int numTests = kbd.nextInt();
for(int j=0; j<=numTests; j++){
for(int i=0; i<arr.getLength(); i++){ //loops through ArrayIntLog and loads random values
n = rand.nextInt(100);
arr.insert(n); //insert a new random value into ArrayIntLog
if(arr.contains(n)){
currentRun = i+1;
i = arr.getLength();
}
}
totalRuns += currentRun;
currentRun = 0;
}
}
}