gpt4 book ai didi

exception-handling - 程序未编译。什么是错误

转载 作者:行者123 更新时间:2023-12-04 22:46:34 25 4
gpt4 key购买 nike

我试图在过去几个小时内在命令提示符下运行以下简单代码。仍然无法修复错误。

这里有什么问题。我找不到。

这是代码:

public static void main(String[] args) {
int i;
try {
DataInputStream din = new DataInputStream(System.in);
i = Integer.parseInt(din.readLine());
}
catch(NumberFormatException || IOException exception) {
System.out.println(exception.getMessage());
}
}

最佳答案

需用单|运算符(operator)。不是 || .

catch(NumberFormatException | IOException exception)

关于exception-handling - 程序未编译。什么是错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22869362/

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