2

我创建了这个对象,其中包含对其他一些对象的引用:

public class ListHandler {

    private AppVariables app; //AppVariables instance
    private Extra extra; //the extra argument represanting the list
    private ArrayList<FacebookUser> arrayList; //the array list associate with the list given
    private Comparator<FacebookUser> comparator; //the comparator of the list
    private String emptyText; //list empty text

    /**
     * Constructor - initialize a new instance of the listHandler
     * @param app the current {@link AppVariables} instance
     * @param extra the {@link Extra} {@link Enum} of the list
     */
    public ListHandler(AppVariables app, Extra extra)
    {
        this.app = app;
        this.extra = extra;
         //set the array list to match the list given in the arguments
        setArrayList(); 
        setComparator();
        setEmptyTest();
    }
    /**
     * Clear all resources being held by this object
     */
    public void clearListHandler()
    {
        this.arrayList = null;
        this.comparator = null;
        this.app = null;
        this.emptyText = null;
        this.extra = null;      
    }   

我已经构建了该clearListHandler()方法,以便null在完成使用ListHandler.

有必要吗?我是否需要清除所有对象以便稍后将它们垃圾收集起来,或者 GC 是否会知道该对象不再使用,因为初始化它的对象不再使用?

4

3 回答 3

4

垃圾收集非常聪明,您通常不需要将对象显式设置为 null(尽管在使用位图时在某些情况下会有所帮助)。

如果一个对象无法从任何活动线程或任何静态引用访问,则该对象有资格进行垃圾收集或 GC,换句话说,如果一个对象的所有引用都为空,则您可以说该对象有资格进行垃圾收集。循环依赖不计为引用,因此如果对象 A 具有对象 B 的引用并且对象 B 具有对象 A 的引用并且它们没有任何其他实时引用,那么对象 A 和 B 都将有资格进行垃圾收集。通常,在以下情况下,对象可以在 Java 中进行垃圾回收:

  1. 该对象的所有引用都显式设置为 null,例如 object = null
  2. 对象是在块内创建的,一旦控制退出该块,引用就会超出范围。
  3. 父对象设置为 null,如果一个对象持有另一个对象的引用,并且当您将容器对象的引用设置为 null 时,子对象或包含的对象自动成为垃圾回收的条件。
  4. 如果一个对象只有通过 WeakHashMap 的实时引用,它将有资格进行垃圾收集。

您可以在此处找到有关垃圾收集的更多详细信息。

于 2013-03-28T14:14:04.250 回答
1

你不应该那样做。垃圾收集器将自动确定何时最好清除所有对象。尝试阅读这个这个

于 2013-03-28T14:22:38.417 回答
0

不会。Dalvik/Java 虚拟机将分配内存,并根据需要取消分配内存。

你正在做的事情没有问题,只是没有必要。

于 2013-03-28T14:19:23.590 回答