在 java 中模拟 python 的 With 语句
2022-09-04 05:21:20
在Java中是否有类似Python和上下文管理器的东西?
例如,假设我想执行如下操作:
getItem(itemID){
Connection c = C.getConnection();
c.open();
try{
Item i = c.query(itemID);
}catch(ALLBunchOfErrors){
c.close();
}
c.close();
return c;
}
在python中,我只有:
with( C.getConnection().open() as c):
Item i = c.query(itemID);
return i;