标签: java garbage-collection
在以下代码中:
void method() { HeavyObject heavy = new HeavyObject(); doStuffWith(heavy); doOtherStuff(); }
... heavy之前或期间可以doOtherStuff()进行垃圾回收吗? JLS参考文献是首选,但实际的实验也很酷。
heavy
doOtherStuff()
我的目标是确定heavy = null是否严格无用,或者可能会有某些的好处。
heavy = null