힙 오버플로:
/** * @author LXA * 堆溢出 */ public class Heap { public static void main(String[] args) { ArrayList list=new ArrayList(); while(true) { list.add(new Heap()); } } }
오류:
java.lang.OutOfMemoryError: Java 힙 공간
스택 오버플로:
/** * @author LXA * 栈溢出 */ public class Stack { public static void main(String[] args) { new Stack().test(); } public void test() { test(); } }
오류:
java.lang.StackOverflowError
더 많은 Java 메모리 오버플로 예제(힙 오버플로, 스택 오버플로) 관련 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!