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

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...