gpt4 book ai didi

java - 搞乱 java Finalize()

转载 作者:行者123 更新时间:2023-11-30 04:10:09 27 4
gpt4 key购买 nike

我读到,JVM gc 在找到无法访问的对象后,会运行该对象的 Finalize() 方法。然后它检查该对象是否仍然无法访问,如果不是则删除它。所以我写了一个终结,使它的对象的引用再次可用:

public class Stuff {

List<Object> list;

public Stuff(List<Object> list) {
this.list = list;
}

@Override
protected void finalize() throws Throwable {
list.add(this);
System.out.println("A Stuff is finalized");
}
}

主要方法如下:

public class Main { 
public static void main(String[] args) {
List<Object> list = new ArrayList<>();
list.add(new Stuff(list));
list.remove(0);
System.gc();
System.out.println(list.get(0));
}
}

GC 已运行,因为“A stuff is Finalized”出现在标准输出上,但 main 中的打印行随后抛出 IndexOutOfBoundsException。我可以完成这项工作吗?

我通常根本不使用 Finalize,我只是认为看看 Finalize 是否可以使其对象的引用再次可用会很有趣。我可以完成这个工作吗?

最佳答案

终结器在专用终结器线程中运行,并且您编写的是线程不安全代码。例如,使用同步集合。

另一个陷阱是,仅调用 System.gc() 并不能保证终结器在方法调用返回时已运行。终结器只是被排入终结器线程的队列中——即使如此。要解决此问题,您实际上应该使用同步助手,例如 CountDownLatch 并调用 System.gc() 两到三次,以达到良好的效果。

在这里,您的代码通过上述想法得到了改进:

public class Stuff {

static final List<Stuff> list = Collections.synchronizedList(new ArrayList<Stuff>());
static final CountDownLatch cdl = new CountDownLatch(1);

@Override protected void finalize() {
list.add(this);
cdl.countDown();
}

public static void main(String[] args) throws Exception {
list.add(new Stuff());
list.remove(0);
System.gc();
System.gc();
cdl.await();
System.out.println(list.size());
}
}

关于java - 搞乱 java Finalize(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19821213/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com