取消引用未使用的对象是否会提高冗长方法的性能?
取消引用未使用的对象(分配 null)会提高冗长方法的性能吗?如果它增加,是否有任何经验法则来决定何时分配 null。因为这需要在代码中执行额外的步骤。
Possible Duplicate:
Does setting Java objects to null do anything anymore?
Will dereferncing the unused object(assigning with null) increase performance in lengthy methods? If it increase, is there is any thumb rule for deciding when to assign null. since this requires an extra step in the code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于上下文。如果将 null 值分配给未使用的对象,那么它将有资格进行垃圾收集。但不能保证内存会释放。
It depends on the context. If you assign null value to an unused object then it will become eligible for garbage collected. But there is no guarantee that the memory will become free.
粗略地说,不会,或者说不太可能。这就是我将采取的方法,
Loosely speaking, it doesn't or say very unlikely. This is how I will approach,