メソッド2を呼び出すメソッド1を呼び出すメインがあります。
public class azza_wahada_A3Q1 {
public static void main (String[] args) {
Method1 m1 = new Method1();
int age = m1.getValidNumber("Please enter your age.", 0, 110);
//int age = m2.getInteger("Please enter your age.");
System.out.println("u r age is \n"+age);
}
}
public class Method1 {
public static int getValidNumber(String prompt, int min, int max){
int input;
Method2 m2 = new Method2();
Method3 m3 = new Method3();
Boolean range = false;
while(range){
input = m2.getInteger(prompt);
if (input > min && input < max){
range = true;
// return input;
}
else{
m3.showError(input,min, max);
range = false;
}
}
return input;
}
}
import javax.swing.JOptionPane;
public class Method2 {
public static int getInteger(String prompt){
String message;
int getInt;
message = JOptionPane.showInputDialog(null, prompt);
getInt = Integer.parseInt(message);
return getInt ;
}
}
import javax.swing.JOptionPane;
public class Method3 {
public static void showError(int number, int min, int max){
String error_message;
error_message = JOptionPane.showInputDialog(null, "Please enter a new number");
}
}
なぜそれが起こるのですか?コードはwhileループなしで正常に機能します。ループを導入すると、入力変数が初期化されていない可能性があるというエラーメッセージが表示され、メソッド1の戻り入力でエラーが表示されます。何が起こっているのでしょうか。ありがとうございました