Java中内存异常*Error与OutOfMemoryError详解
使用Java开发,经常回遇到内存异常的情况,而*Error和OutOfMemoryError便是最常遇见的错误。
首先,看看这两种错误的解释:
如果当前线程请求的栈深度大于虚拟机所允许的最大深度,将抛出*Error异常。 如果虚拟机在扩展栈时无法申请到足够的内存空间,则抛出OutOfMemoryError异常。
这里把异常分为两种情况,但是存在一些相互重叠的地方:当栈空间无法继续分配时,到底是内存太小,还是已经使用的栈空间太大,本质上是对同一个问题的两种描述而已。
接下来,两个小例子分别展示如何产生这两种异常:
OutOfMemoryError异常:
首先设置一下虚拟机启动参数,如下:
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import java.util.ArrayList;
import java.util.List;
public class TEST1 {
static class OOMObject{
}
public static void main(String[] args) {
List<OOMObject> list = new ArrayList<OOMObject>();
while ( true ){
list.add( new OOMObject());
}
}
}
|
错误信息入下:
1
2
3
4
5
6
7
8
|
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Unknown Source)
at java.util.Arrays.copyOf(Unknown Source)
at java.util.ArrayList.grow(Unknown Source)
at java.util.ArrayList.ensureExplicitCapacity(Unknown Source)
at java.util.ArrayList.ensureCapacityInternal(Unknown Source)
at java.util.ArrayList.add(Unknown Source)
at com.ws.TEST1.main(TEST1.java: 13 )
|
*Error异常:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
public class TEST2 {
private int stackLength = 1 ;
public void stackLeak() {
stackLength++;
stackLeak();
}
public static void main(String[] args) {
TEST2 oom = new TEST2();
try {
oom.stackLeak();
} catch (Throwable e) {
System.out.println( "stack length:" + oom.stackLength);
throw e;
}
}
}
|
错误信息如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
stack length: 7585
Exception in thread "main" java.lang.*Error
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
at com.ws.TEST2.stackLeak(TEST2.java: 8 )
......
|
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/wangshuang1631/article/details/53763641