作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
据我所知,不能保证 Object.finalize()
总是被调用。但是如果有重要的非GC资源,并且用户没有意外调用close()
,我该如何释放该资源?
Object.Finalize()
是否也有同样的问题?如果是这样的话,我该如何解决这个问题?
最佳答案
您应该使用try-finally
或更好的try-with-resources
try(Resource res = /*aquire resource*/){
//do stuff
}catch(Exception e //or watever){
//handle exceptions
}
以及在 Java7 之前如何做到这一点:
Resource res = null;
try{
res = //aquire resource
//do stuff
}catch(Exception e /*or whatever*/){
//handle exceptions
}finally{
if(null != res){
res.close();
}
}
在.Net中你应该使用
using (Resource resource = /*aquire resource*/)
{
//do stuff
}
简单的答案是你不能
。这种行为是一个BUG
,您应该找到它并修复它。
关于Java 终结 : How can I free non-GC resource even if there's mistake,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21214948/
据我所知,不能保证 Object.finalize() 总是被调用。但是如果有重要的非GC资源,并且用户没有意外调用close(),我该如何释放该资源?PS。 .NET中的Object.Finaliz
我是一名优秀的程序员,十分优秀!