java中的軟引用與虛引用--------java中的四大引用

強引用

首先我先建了一個類M 查看何時調用 finalize方法ide

public class M {
@Override
protected void finalize() throws Throwable {code

System.out.println("~finalize");

super.finalize();
}
}orm

public class NormalReference {io

public static void main(String[] args) throws IOException {
    M m = new M();

m=null;
System.gc();
System.out.println(m);
System.in.read();
}
}class

相關文章
相關標籤/搜索