gpt4 book ai didi

java - 为什么我会得到 "Unhandled exception type IOException"?

转载 作者:IT老高 更新时间:2023-10-28 21:04:16 28 4
gpt4 key购买 nike

我有以下简单的代码:

import java.io.*;
class IO {
public static void main(String[] args) {
BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
String userInput;
while ((userInput = stdIn.readLine()) != null) {
System.out.println(userInput);
}
}
}

我收到以下错误消息:

----------
1. ERROR in io.java (at line 10)
while ((userInput = stdIn.readLine()) != null) {
^^^^^^^^^^^^^^^^
Unhandled exception type IOException
----------
1 problem (1 error)roman@roman-laptop:~/work/java$ mcedit io.java

有人知道为什么吗?我只是试图简化 sum 网站 (here) 上给出的代码。我是否过于简单化了?

最佳答案

您应该在主方法中添加“抛出 IOException”:

public static void main(String[] args) 抛出 IOException {

您可以在 JLS 中阅读更多关于检查异常(Java 特有)的信息。 .

关于java - 为什么我会得到 "Unhandled exception type IOException"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2305966/

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