OOM问题

一、什么是OOM?

OOM(out of memory)内存溢出,内存用完了。

官方说明: Thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and no more memory could be made available by the garbage collector. 意思就是说,当JVM因为没有足够的内存来为对象分配空间并且垃圾回收器也已经没有空间可回收时,就会抛出这个error(注:非exception,因为这个问题已经严重到不足以被应用处理)。

二、什么情况导致OOM?如何解决?

发布了79 篇原创文章 · 获赞 48 · 访问量 9万+

猜你喜欢

转载自blog.csdn.net/bianyamei/article/details/81260125