gpt4 book ai didi

java - autocloseable idiom 可能出现空指针异常

转载 作者:搜寻专家 更新时间:2023-10-30 21:29:10 25 4
gpt4 key购买 nike

考虑以下 try-with-resources block :

try (Foo foo = getAFoo()) {

}

对于某些实现了 java.lang.AutoCloseable 的类 Foo

如果 getAFoo() 返回 null,那么会在右大括号上抛出空指针异常(由于运行时试图调用 close )?

最佳答案

根据 this Oracle blog :

After due consideration the JSR 334 expert group has decided the semantics of the try-with-resources statement on a null resource should be changed as follows: the compiler-generated calls to close a resource will only occur if the resource is non-null.

这意味着您可以关闭 try(带资源) block 中的任何 null 资源而不会抛出错误(当程序自动尝试关闭try 结束时的资源)。

关于java - autocloseable idiom 可能出现空指针异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33692548/

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