autocloseable idiom 可能出现空指针异常
Possible null pointer exception on autocloseable idiom
考虑以下 try-with-resources 块:
try (Foo foo = getAFoo()) {
}
对于一些 class Foo
实现 java.lang.AutoCloseable
.
如果 getAFoo()
是 return null
,那么会在右大括号上抛出空指针异常(由于运行时试图调用 close
) ?
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
(带资源)块中的任何 null
资源而不会引发错误(当程序自动尝试关闭资源时也是如此 try
结束)。
您实现了 java.lang.AutoCloseable
,因此编译器将在完成后尝试关闭资源,但只有当资源为 non-null
时才会发生关闭资源的过程。所以在这种情况下我认为不会抛出异常。
考虑以下 try-with-resources 块:
try (Foo foo = getAFoo()) {
}
对于一些 class Foo
实现 java.lang.AutoCloseable
.
如果 getAFoo()
是 return null
,那么会在右大括号上抛出空指针异常(由于运行时试图调用 close
) ?
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
(带资源)块中的任何 null
资源而不会引发错误(当程序自动尝试关闭资源时也是如此 try
结束)。
您实现了 java.lang.AutoCloseable
,因此编译器将在完成后尝试关闭资源,但只有当资源为 non-null
时才会发生关闭资源的过程。所以在这种情况下我认为不会抛出异常。