[问题] 关于try-with-resource

楼主: plokmijnuhb (..)   2018-06-20 22:47:32
最近用cursor注意到java有try-with-resource可用
看起来类似以前用过C#的using,在statement结束时会自动close resource
程式码写起来类似
try(Cursor cursor = getContentResolver().query(xxxx)) {
// do something
} catch (Exception ex) {
// handle exception
}
我的问题是cursor真的会保证close吗?
程式执行的顺序应该会是
cursor.close() -> catch
假如cursor发生exception的话
也能在这个catch中hook到吗?
万一没有的话, 是不是就memory leak了?
以前的写法好像也差不多,还保证exception都捞的到
Cusor cursor = null;
try {
cursor = getContentResolver().query(xxxx);
} catch(Exception ex) {
// handle exception
} finally {
try {
if(cursor != null && !cursor.isClose()) {
cursor.close();
}
} catch(Exception ex) {
//handle exception
}
}
作者: salavida (席阿)   2018-06-20 23:39:00
Cursor有implements Closeable try-with一定能close
作者: y3k (激流を制するは静水)   2018-06-21 20:01:00
你把Cursor换成JSONObject看他会怎么错就知道了
作者: ssccg (23)   2018-06-21 22:02:00
try resource就是自动帮写finally close啊..就不用把变量scope扩大到try block外面,也不用检查null还要处理close的exception,那些都多写的...另外没close是resource leak,不是memory leak

Links booklink

Contact Us: admin [ a t ] ucptt.com