java - 关于System.gc()的执行?

查看:237
本文介绍了java - 关于System.gc()的执行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

package FinalizeTest;

public class Person {
    
    public Person(){
        System.out.println("person created");
    }

    @Override
    protected void finalize() throws Throwable {
        // TODO Auto-generated method stub
        System.out.println("gc ");
        throw new Exception("no effect");
    }
}



package FinalizeTest;

public class MainTest {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Person per = new Person();
        per = null;
        System.gc();
        System.out.println("hello world");

    }

}

输出为

person created
hello world
gc 

代码如上所示, 求解释为什么hello world会在gc之前输出??

解决方案

关于java的 finalize() 不要与c/c++混淆了,java程序员从来不能决定垃圾回收的时机。
官方描述:

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

finalize()只是定义了回收时的动作,但具体何时回收仍旧由垃圾回收器自己决定。

仔细看下javadoc

这篇关于java - 关于System.gc()的执行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆