Does variable = null set it for garbage collection

后端 未结 8 1481
走了就别回头了
走了就别回头了 2020-11-27 19:04

Help me settle a dispute with a coworker: Does setting a variable or collection to null in Java aid in garbage collection and reducing memory usage? If I have a long running

8条回答
  •  日久生厌
    2020-11-27 19:31

    It is useless on local variables, but it can be useful/needed to clear up instance variables that are not required anymore (e.g. post-initialization).

    (Yeah yeah, I know how to apply the Builder pattern...)

提交回复
热议问题