gpt4 book ai didi

java - with try resource when opening the resource throws exception怎么办?

转载 作者:行者123 更新时间:2023-11-30 10:37:04 24 4
gpt4 key购买 nike

我正在使用 try 表达式,并且阅读了有关此的 java 文档。 https://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html .

我了解到,如果资源关闭和 try block 中的代码都抛出异常,则关闭异常将被抑制。但是在资源打开抛出异常的情况下会发生什么?我需要使用封闭式捕获器捕获它吗?这是如何表现的?

try (Statement stmt = con.createStatement()) {
// use stmt here
}

假设创建语句抛出了一个错误,现在会发生什么?它被压制了吗?我想区分此异常与语句创建成功且 block 抛出异常时可能抛出的任何异常。

感谢您的帮助!

最佳答案

Lets say creating statement threw an error, what happens now? Is it suppressed?

不,它没有被抑制,它被原样抛出,确实你的代码根据 §14.20.3.1 Java 规范 等同于:

Throwable primaryExc = null;
Statement stmt = null;
try {
stmt = con.createStatement();
// use stmt here
} catch (Throwable e) {
primaryExc = e;
throw e;
} finally {
if (stmt != null) {
if (primaryExc != null) {
try {
stmt.close();
} catch (Throwable ex) {
primaryExc.addSuppressed(ex);
}
} else {
stmt.close();
}
}
}

如您所见,如果 createStatement() 抛出异常,如果未明确捕获,则调用代码必须将此异常作为正常异常处理。

另请注意,就像上面的等效代码片段一样,如果 stmt.close() 在被 try-with-resources 语句自动调用时抛出异常,调用代码必须处理此异常,因为它也不会被抑制。

已为 try-with-resources 语句添加了抑制异常的功能,以便能够获取在调用 close() 时抛出的异常try block 中已经抛出异常时的资源,例如:

try (Statement stmt = con.createStatement()) {
throw new RuntimeException("foo");
} catch (Exception e) {
// Here e is my RuntimeException, if stmt.close() failed
// I can get the related exception from e.getSuppressed()
}

关于java - with try resource when opening the resource throws exception怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40269930/

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