gpt4 book ai didi

java - 尝试/捕获和输入不匹配异常

转载 作者:行者123 更新时间:2023-12-02 03:58:18 26 4
gpt4 key购买 nike

为什么我尝试时需要导入 inputmismatchException

catch(InputMismatchException e){
System.out.println("cant print");

但是当我尝试以下操作时,我不需要导入任何内容?

catch(ArithmeticException e){
System.out.println("cant print");

最佳答案

why do I need to import inputmismatchexception

java.util.InputMismatchException 位于 java.uti 包中。您应该导入它,因为它默认不导入。

java.util.InputMismatchException doc

I don't have to import anything?

java.lang.ArithmeticException 位于 java.lang 包中。你不需要导入这个包,因为它是默认导入的。

java.lang.ArithmeticException doc

java.lang 拥有核心 Java 语言类。

See java.lang doc

关于java - 尝试/捕获和输入不匹配异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35206385/

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