import java.util.InputMismatchException;
import java.util.Scanner;
public class Exceptionxuexi {
public static void main(String[] args) {
// TODO 自动生成的方法存根
Scanner in = new Scanner(System.in);
boolean continueInput = true;
do {
try {
System.out.print("Enter an integer: ");
int number = in.nextInt();
//Display the result
System.out.println("The number entered is " + number);
continueInput = false;
}
catch(InputMismatchException ex) {
System.out.println("Try again. (" + "Incorrect input: an integer is required)");
in.nextLine();
}
}while(continueInput);
}
}
这是我在学习异常过程中的一个代码段,在catch块中的nextLine方法不太明白是什么用处。
书上写的是,in.nextLine()丢弃当前的输入行,所以用户就可以键入一个新行。
接下来是我认为没有nextLine方法的程序逻辑:
进入循环,我如果输入了一个小数,库函数nextInt()抛出一个异常。
进入catch块,第一行代码输出错误信息。
接着循环继续。进入try块,Enter an integer,接着这里nextInt()还可以让我继续输入啊,可为什么程序运行的时候就是进入死循环,不允许我再次进行输入了呢?请求解答!