最佳答案
我只是有一个相当不愉快的经验,在我们的生产环境,造成 OutOfMemoryErrors: heapspace..
我将问题追溯到我在函数中使用的 ArrayList::new
。
为了通过声明的构造函数(t -> new ArrayList<>()
)验证这实际上比正常的创建执行得更差,我编写了以下小方法:
public class TestMain {
public static void main(String[] args) {
boolean newMethod = false;
Map<Integer,List<Integer>> map = new HashMap<>();
int index = 0;
while(true){
if (newMethod) {
map.computeIfAbsent(index, ArrayList::new).add(index);
} else {
map.computeIfAbsent(index, i->new ArrayList<>()).add(index);
}
if (index++ % 100 == 0) {
System.out.println("Reached index "+index);
}
}
}
}
使用 newMethod=true;
运行该方法将导致使用 OutOfMemoryError
的方法在索引达到30k 之后失败。使用 newMethod=false;
时,程序不会失败,但是会不断冲击,直到被杀死(指数很容易达到150万)。
为什么 ArrayList::new
在堆上创建如此多的 Object[]
元素,以至于它能如此快地创建 OutOfMemoryError
?
(顺便说一句,当集合类型为 HashSet
时也会发生这种情况。)