我正在尝试创建一个简单的小程序,它将要求一个正整数,并且在它从用户那里收到一个正整数之前不会崩溃或关闭。但是,当我的程序多次调用带有 Scanner 的方法时,它会不断崩溃,并报告错误 NoSuchElementException。我将使用这个程序的基础知识来帮助我正在做的其他一些事情。这是我当前的代码;
import java.util.InputMismatchException;
import java.util.Scanner;
public class test2 {
/**
* Test ways to avoid crashes when entering integers
*/
public static void main(String[] args) {
int num = testnum();
System.out.println("Thanks for the " + num + ".");
}
public static int testnum() {
int x = 0;
System.out.println("Please enter a positivie integer;");
x = getnum();
while (x <= 0) {
System.out.println("That was not a positive integer, please enter a positive integer;");
x = getnum();
}
return x;
}
public static int getnum() {
Scanner scan = new Scanner(System.in);
int testint;
try {
testint = scan.nextInt();
} catch (InputMismatchException e) {
scan.close();
return 0;
}
scan.close();
return testint;
}
}
任何帮助将不胜感激,谢谢:)