微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – 对于autocloseable成语可能的空指针异常

请考虑以下try-with-resources块:
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(使用资源)块中的任何空资源,而不会抛出错误(当程序在尝试结束时自动尝试关闭资源时也相同).

原文地址:https://www.jb51.cc/java/122644.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐