java内存溢出种类
java虚拟机运行时的数据区的有以下几种:
?
?
方法区虚拟机栈本地方法栈堆程序计数器?
内存溢出也有以下几种情况:
?
?
java堆溢出(异常有:java.lang.outOfMemoryError:Java heap space)虚拟机栈和本地方法栈溢出(异常有:java.lang.StackOverflowError)创建线程导致内存溢出(异常有:java.lang.OutOfMemoryError:unable to create new native thread)方法区溢出(异常有:java.lang.OutOfMeoryError:PermGen space)?