2

这是我正在研究的程序的一小部分。我正在尝试检查用户是否输入了正确的号码。

他们有五个选项可供选择,因此他们可以点击 1、2、3、4 或 5。然后按 Enter。

所以我想检查以确保用户没有在 < 1 或 > 5 中输入任何内容。我让那部分工作......但我只想知道是否有更简单的方法可以做到这一点在下面的代码中做了。

下一部分是我还想确保用户不输入字母。像“gfgfadggdagdsg”可供选择。

这是我正在处理的部分的代码....

public void businessAccount()
    {


        int selection;

        System.out.println("\nATM main menu:");
        System.out.println("1 - View account balance");
        System.out.println("2 - Withdraw funds");
        System.out.println("3 - Add funds");
        System.out.println("4 - Back to Account Menu");
        System.out.println("5 - Terminate transaction");
        System.out.print("Choice: ");
        selection = input.nextInt();

            if (selection > 5){

            System.out.println("Invalid choice.");
            businessAccount();

        }
            else if (selection < 1){
                System.out.println("Invalid choice.");
                businessAccount();
            }
            else {

        switch(selection)
        {
        case 1:
            viewAccountInfo3();
            break;
        case 2:
            withdraw3();
            break;
        case 3:
            addFunds3();
            break;
        case 4:
            AccountMain.selectAccount();
            break;
        case 5:
            System.out.println("Thank you for using this ATM!!! goodbye");
        }
            }
    }
4

4 回答 4

7

您可以通过添加案例< 1来摆脱检查。> 5default

try{
     selection = input.nextInt();        
     switch(selection){
      case 1:
          viewAccountInfo3();
          break;
      case 2:
          withdraw3();
          break;
      case 3:
          addFunds3();
          break;
      case 4:
          AccountMain.selectAccount();
          break;
      case 5:
          System.out.println("Thank you for using this ATM!!! goodbye");
          break;
      default:             
          System.out.println("Invalid choice.");
          businessAccount();

      }
}catch(InputMismatchException e){
    //do whatever you wanted to do in case input is not an int
}
于 2012-09-27T04:42:53.767 回答
0

使用BufferedReader您可以执行以下操作:

InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
String s = br.readLine();
int selection = 0;

try{
    selection = Integer.parseInt(s);
    if(selection > 5 || selection < 1){
        System.out.println("Invalid choice.");
        businessAccount();
    }else{
        // your switch code here
    }
    // you can use @Nishant's switch code here. it is obviously better: using switch's default case.
}catch(NumberFormatException ex){
    // throw new Exception("This is invalid input"); // or something like that..
    System.out.println("Invalid choice.");
    businessAccount();
}

希望有帮助。

注意:您必须import java.lang.NumberFormatException import java.io.InputStreamReaderimport java.io.BufferedReader

于 2012-09-27T04:45:53.100 回答
0

当您检查特定的选择时,使用switch case会更好更快地执行if 语句。

于 2012-09-27T04:59:46.743 回答
-1

另一种方法是使用正则表达式来使其工作。假设你有一个字符串 x 然后

字符串 x = "某事";

如果(x.matches(“正则表达式”)){

}

另一种方法是用 try catch 包围。

于 2012-09-27T04:37:19.040 回答