gpt4 book ai didi

java - 构造函数抛出异常后可以调用finalize吗?

转载 作者:太空狗 更新时间:2023-10-29 22:39:47 25 4
gpt4 key购买 nike

如果对象的构造函数出现异常,是否有关于是否使用 finalize() 清理对象的任何详细信息。

这个方法何时被调用是出了名的错误定义。根据手册:

The Java programming language does not guarantee which thread will invoke the finalize method for any given object. It is guaranteed, however, that the thread that invokes finalize will not be holding any user-visible synchronization locks when finalize is invoked. If an uncaught exception is thrown by the finalize method, the exception is ignored and finalization of that object terminates.

http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html#finalize%28%29

我无法以这种方式触发 finalize 方法。有谁知道它是否保证不被调用,或者在某些情况下是否在构造函数初始化对象失败后被调用(这是一个异常)。

我问这个是因为我有一个不能清理两次的对象。我试图了解在抛出异常之前进行清理是否安全,或者我是否必须为 finalize() 留下一个标记以有效地跳过而不做任何事情。

最佳答案

我的测试表明可以

public class Test1 {

Test1() {
throw new RuntimeException();
}

@Override
protected void finalize() throws Throwable {
System.out.println("finalized");
}

public static void main(String[] args) throws Exception {
try {
new Test1();
} catch (RuntimeException e) {
e.printStackTrace();
}
System.gc();
Thread.sleep(1000);
}
}

打印

java.lang.RuntimeException
at test.Test1.<init>(Test1.java:13)
at test.Test1.main(Test1.java:24)
finalized

它在 Java HostSpot 客户端 VM 1.7.0_03 上

关于java - 构造函数抛出异常后可以调用finalize吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14483279/

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