NoSuchElementException with Java.Util.Scanner
当调用枚举的 nextElement 方法并且没有更多元素时,抛出 NoSuchElementException在枚举中。在给定的 Java 代码中,当 Scanner 类尝试从用户输入中读取第二个整数时,会遇到此异常。
您提供的源代码片段旨在提示用户输入两个整数并计算它们的总和。但是,用户可能只输入了一个整数,导致扫描仪无法为 nextInt() 方法提供有效输入。
要解决此问题,您可以合并一项检查来确定扫描仪是否有另一个整数在尝试读取之前可用的整数。这是代码的更新版本:
import java.util.Scanner; public class Addition { public static void main(String[] args) { // creates a scanner to obtain input from a command window Scanner input = new Scanner(System.in); int number1; // first number to add int number2; // second number to add int sum; // sum of 1 & 2 System.out.print("Enter First Integer: "); // prompt if (input.hasNextInt()) { number1 = input.nextInt(); } else { // Handle the case where no number is entered number1 = 0; } System.out.print("Enter Second Integer: "); // prompt 2 if (input.hasNextInt()) { number2 = input.nextInt(); } else { // Handle the case where no number is entered number2 = 0; } sum = number1 + number2; // addition takes place, then stores the total of the two numbers in sum System.out.printf("Sum is %d\n", sum); // displays the sum on screen } // end method main } // end class Addition
此更新的代码包括额外的检查,以验证用户在使用 nextInt() 方法读取整数之前是否输入了整数。这有助于避免 NoSuchElementException 并确保程序按预期运行,即使用户提供无效或不完整的输入。
以上是使用'java.util.Scanner”读取多个整数时如何防止'NoSuchElementException”?的详细内容。更多信息请关注PHP中文网其他相关文章!