在此示例中,try 块缺少的第三个可能性是什么


public void writeList() {
    PrintWriter out = null;
    try {
        System.out.println("Entering" + " try statement");
        out = new PrintWriter(new FileWriter("OutFile.txt"));
        for (int i = 0; i < SIZE; i++) {
            out.println("Value at: " + i + " = " + list.get(i));
        }
    } catch (IndexOutOfBoundsException e) {
        System.err.println("Caught IndexOutOfBoundsException: "
                           +  e.getMessage());
    } catch (IOException e) {
        System.err.println("Caught IOException: " +  e.getMessage());
    } finally {
        if (out != null) {
            System.out.println("Closing PrintWriter");
            out.close();
        } 
        else {
            System.out.println("PrintWriter not open");
        }
    }
}

此方法的 try 块有三种不同的退出可能性;这里有两种。

1) try 语句中的代码失败并引发异常。这可能是由新的 FileWriter 语句引起的 IOException,也可能是由 for 循环中的错误索引值引起的 IndexOutOfBoundsException。

2) 一切成功,try 语句正常退出。

有人可以告诉我,可能发生但这里没有提到的第三种潜在可能性是什么?

异常可以传播到堆栈中的下一个方法

相关内容

  • 没有找到相关文章

最新更新