gpt4 book ai didi

java - 有多少对象被垃圾收集?

转载 作者:行者123 更新时间:2023-12-01 06:41:49 24 4
gpt4 key购买 nike

在下面的示例程序中,在执行 Thread.sleep(1000) 行之前将有多少对象被垃圾回收?

public class GCExample {

public static void main(String[] args) throws InterruptedException {
GCExample gc = new GCExample();
gc.doSomeThing();
Thread.sleep(1000);
}
public void doSomeThing(){
Object[] obj = new Object[2];
for(int i=0;i<obj.length;i++){
obj[i] = new Object();
}
}

}

最佳答案

考虑到 GC 的不确定性,我认为这个数字与一段字符串的长度相当。

关于java - 有多少对象被垃圾收集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3445092/

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