当前位置: 技术问答>java相关
判断一个内存泄漏的问题!!!!
来源: 互联网 发布时间:2015-02-03
本文导语: 比如说在 char c=new[10000]; 的时候,如果资源快竭尽了,如何判断是否分配成功? 解决方法,当然不希望程序崩溃,最好有一定的错误处理. | 这不是一个Exception而是一个Error,你catch这个Error就行了…...
比如说在
char c=new[10000];
的时候,如果资源快竭尽了,如何判断是否分配成功?
解决方法,当然不希望程序崩溃,最好有一定的错误处理.
char c=new[10000];
的时候,如果资源快竭尽了,如何判断是否分配成功?
解决方法,当然不希望程序崩溃,最好有一定的错误处理.
|
这不是一个Exception而是一个Error,你catch这个Error就行了……
|
java.lang.OutOfMemoryError
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.
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.