while循环中的异常处理

时间:2015-04-29 23:56:05

标签: java exception-handling while-loop try-catch inputmismatchexception

我对此代码的问题如下:变量号不能是String,所以我尝试使用try,catch(InputMissmatchException)语句来处理问题。但是,当进入循环并且有人输入String时,异常是句柄,但它使用最后一个有效条目再次循环。即我输入5然后我输入“你好”,结果是:“你必须输入一个数字。”但现在再次计算5。

这会使计数器对count变量添加太多。如果用户继续使用String,则循环不断地反复添加最后一个有效条目,因此最后计数将是错误的。

从逻辑上讲,我希望程序能够处理问题并要求用户输入正确的条目,直到输入一个可接受的整数,而不再通过while循环;当用户输入有效条目时,保持循环或存在(-1)。

int number = 0;
int[] count = new int[11];

    try
        {
        number = input.nextInt(); 
        } 
        catch (InputMismatchException y)
        {
        System.out.println("You must enter a number.");
        input.nextLine();

        }    


    while (number != -1)
    {
        try 
        {
            ++count[number];
        } 
        catch (IndexOutOfBoundsException e) 
        {
            System.out.println("Please enter a valid number from the menu.");
        }

        try
        {
        number = input.nextInt();
        } 
        catch (InputMismatchException y)
        {
        System.out.println("You must enter a number.");
        input.nextLine();

        } 
    }

1 个答案:

答案 0 :(得分:1)

听起来你想要一个while循环,直到他们输入一个数字

int number = 0;
int[] count = new int[11];

while(true) {
    try
    {
    number = input.nextInt();
    break;
    } 
    catch (InputMismatchException y)
    {
    System.out.println("You must enter a number.");
    input.nextLine();

    }  
}  


while (number != -1)
{
    try 
    {
        ++count[number];
    } 
    catch (IndexOutOfBoundsException e) 
    {
        System.out.println("Please enter a valid number from the menu.");
    }

    while(true) {
        try
        {
            number = input.nextInt();
            break;
        } 
        catch (InputMismatchException y)
        {
            System.out.println("You must enter a number.");
            input.nextLine();
        } 
    }

}