gpt4 book ai didi

java - 输入不匹配异常错误

转载 作者:行者123 更新时间:2023-12-02 07:43:24 25 4
gpt4 key购买 nike

我收到一个编译时错误:

不能抛出InputMismatchException类型的异常;异常类型必须是 Throwable InputMismatchException.java 的子类

据我所知,InputMismatchException是扫描仪在收到无效输入时抛出的异常,那么为什么这个错误会阻止我编译呢?

import java.util.*;
public class InputMismatchException
{
public static void main(String[] args)
{
boolean continueInput = true;
Scanner input = new Scanner(System.in);
do
{
try
{
System.out.println("Enter an integer: ");
int num = input.nextInt();
System.out.println("You entered: " + num);
continueInput = false;
}
catch (InputMismatchException e) //This is where the error occurs.
{
System.out.println("Enter an integer!");
input.nextLine();
}
}while(continueInput);
}
}

最佳答案

尝试为您的类使用不同的名称。当名为 InputMismatchException 的类已经是异常类的名称时,您会使编译器感到困惑。

关于java - 输入不匹配异常错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11270048/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com