java內存溢出示例(堆溢出、棧溢出)

 

堆溢出java

複製代碼

/**

* @author LXA

* 堆溢出

*/

public class Heap

{

    public static void main(String[] args)

    {

        ArrayList list=new ArrayList();

        while(true)

        {

            list.add(new Heap());

        }

    }

}

複製代碼

報錯:spa

java.lang.OutOfMemoryError: Java heap spaceclass

 

棧溢出test

複製代碼

/**

* @author LXA

* 棧溢出

*/

public class Stack

{

    public static void main(String[] args)

    {

        new Stack().test();

    }

    public void test()

    {

        test();

    }

}

複製代碼

報錯:List

java.lang.StackOverflowErrorim

相關文章
相關標籤/搜索