码迷,mamicode.com
首页 > 其他好文 > 详细

StackOverflowError 和 OutOfMemoryError

时间:2016-08-05 19:44:02      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

 

package cn.zno.outofmomery;

import java.util.ArrayList;
import java.util.List;

public class Test {

    void s() {
        s();
    }

    void h() {
        List<byte[]> list = new ArrayList<byte[]>();
        while (true) {
            list.add(new byte[1024 * 1024]);
        }
    }

    public static void main(String[] args) {
     // new Test().s(); // StackOverflowError
        new Test().h(); // OutOfMemoryError
    }
}

 

StackOverflowError 和 OutOfMemoryError

标签:

原文地址:http://www.cnblogs.com/zno2/p/4571551.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!