22、下面一段代码中,横线上应该填写什么内容? String read() _____________ { FileReader fin = new FileReader("Students.txt"); BufferedReader in = new BufferedReader(fin); String line = in.readLine(); System.out.println(line); in.close(); fin.close(); return line; } A、 不用填写任何内容 B、 throw IOException C、 throws IOException D、 throws FileNotFoundException
时间: 2024-03-04 21:52:07 浏览: 91
C、throws IOException。
在这个代码段中,我们定义了一个名为read()的方法,该方法尝试打开一个名为“Students.txt”的文件,并从中读取一行文本。由于该方法可能会抛出IOException异常,我们需要在方法声明中使用throws关键字来声明。
因此,正确的答案是C、throws IOException。
阅读全文