最近用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
}
}