gpt4 book ai didi

Java 终结 : How can I free non-GC resource even if there's mistake

转载 作者:行者123 更新时间:2023-12-01 23:15:56 27 4
gpt4 key购买 nike

据我所知,不能保证 Object.finalize() 总是被调用。但是如果有重要的非GC资源,并且用户没有意外调用close(),我该如何释放该资源?

PS。 .NET中的 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com