0

我正在尝试处理如何使用 try-catch。我知道它会“尝试”主代码,如果它不起作用,它会捕获它并执行一些不同的东西。我还想继续提示用户输入正确的值。

我不断收到 inputmismatch 异常错误,即使我将 catch 设置为在其块中。

澄清一下:当我向用户询问他们计划停留多长时间以及他们想在哪个楼层时,try-catch 将在那里。因此,我想处理的错误涉及非整数,如果它们超出了“酒店”的范围。

这是我的代码:

public class Hotel{

   public static void main(String[] args) throws IOException {
      int choice = 0;
      String guestName = " ";
      int stayTime = 0;
      int floorPref = 0;

      System.out.println("Welcome to the Hotel California.");
      Scanner sc = new Scanner(System.in);


      Room[][] hotel = new Room[8][20];         


      for(int i = 0; i< hotel.length; i++){
         for(int j = 0; j<hotel[i].length;j++){
            hotel[i][j] = new Room(0,false,"none",0.00,0);

            int roomNum = ((i+1) * 100) + (j + 1);
            hotel[i][j].setRoom(roomNum);

            int roomCheck = hotel[i][j].getRoomNumber();

            if(roomCheck > 500){
               hotel[i][j].setPrice(350.00);   
            }

            else if(roomCheck < 500){
               hotel[i][j].setPrice(200.00);
            } 
         }
      }

       // Guest check-in interface.

      do{

         System.out.println("What business have you today?");
         System.out.println("1. Guest Registration");
         System.out.println("2. Guest Checkout");
         System.out.println("3. Show me occupied rooms");
         System.out.println("4. Exit");

         choice = sc.nextInt();

         if(choice == 1){  


            System.out.println("Tell us about yourself.");

            System.out.println("Please input your name:");

            guestName = sc.next();

            System.out.print("How long are you planning to stay?");

            try{
               stayTime = sc.nextInt();
            }
            catch(InputMismatchException e){
               System.out.println("Please input a valid integer.");
               stayTime = sc.nextInt();
            }

            System.out.println("Great. What floor would you like to be on? Enter a number 1-8, 0 for no preference.");

            floorPref = sc.nextInt();

            System.out.println("The following rooms are available based on your floor preference (floors 1-8, 0 for no preference: ");

         }    
         if(floorPref > 0){

            for(int i = 0; i < hotel[floorPref].length; i++){
               if(hotel[floorPref][(i)].getOccupation() == false){


                  System.out.print("Rooms " +  hotel[floorPref-1][i].getRoomNumber() + ", ");


               }
            }

            System.out.println("Are available today.");
         }


         else if(floorPref == 0){
            for(int i = 0; i < hotel.length; i++){
               for(int j = 0; j < hotel[i].length; j++){
                  System.out.print("Room " +  hotel[i][j].getRoomNumber() + ", ");

               }
            }

            System.out.println("Is available.");

         }


      }while(choice != 4);


   }
}
4

4 回答 4

1

你现在拥有的try-catch块是有缺陷的,因为一旦你进入catch块,用户所要做的就是输入一些不是整数的东西来让你的整个程序崩溃。

相反,要获取stayTime和从 中提取的所有其他 int Scanner,请创建一个单独的函数,该函数会阻塞直到用户输入一个 int:

private static int parseIntFromScanner(Scanner sc) {
    while(true) {
        try {
            int toReturn = sc.nextInt();
            return toReturn;
        } catch(InputMismatchException ime) {
            //Continue back to the top of the loop, ask again for the integer
        }
    }
}
于 2013-09-07T07:11:22.553 回答
0

以下是要划分的一小段代码。如果用户输入零,那么它将去捕捉,您也可以输入数字。 请注意 ,代码只会捕获一次。我使用了已弃用的方法。这只是根据您的要求的一个示例。

import java.io.DataInputStream;
import java.io.IOException;


public class test1 {
    public static void main(String args[]) throws NumberFormatException, IOException
    {
        DataInputStream d=new DataInputStream(System.in);int x;
        try {
             x=Integer.parseInt(d.readLine());
            int z=8;
            System.out.println(z/x);
        } catch (Exception e)
        {
            System.out.println("can not divide by zero");
            x=Integer.parseInt(d.readLine());
        }
    }

}
于 2013-09-07T07:12:00.990 回答
0

尝试将其放在代码的顶部

import java.util.InputMismatchException;
import java.util.Scanner;
import java.io.IOException;

并在您的public static void throws IOException main删除中throws IOException,所以它只public static void main 希望它会起作用

于 2013-09-07T07:05:27.973 回答
0

回答你关于为什么它仍然失败的问题:所有对nextInt()can throw的调用InputMistmatchException,不仅仅是放在 try-catch 块的 try 部分中的调用。这就是现在正在发生的事情。

另一个问题是在块nextInt内第二次调用。catch在 catch 块中抛出的异常需要它们自己的处理,与它们所属的 try-catch 块分开。因此,如果nextInt在 catch 块内抛出一个InputMismatchException,它将离开 try-catch 块并从那里开始工作。对于发布的代码,这意味着 main 将在异常时终止。

正如musical_coder 指出的那样,代码需要循环验证。否则,如果第二次尝试读取值失败,它将最终没有设置值。

顺便说一句,请参阅:Redoing a try after catch in Java,以获取有关扫描仪使用的提示,这将导致更多头痛。实际上,它说明了为什么您现在使用 try-catch 进行的处理总是会终止程序。(这是扫描仪如何运作的问题)

于 2013-09-07T07:38:14.667 回答