java 编写栈内存溢出异常程序【附代码】

今天爱分享给大家带来java 编写栈内存溢出异常程序【附代码】,希望能够帮助到大家。

public class StackOverFlow {
    private int i;

    public void plus() {
        i++;
        plus();
    }

    public static void main(String[] args) {
        StackOverFlow stackOverFlow = new StackOverFlow();
        try {
            stackOverFlow.plus();
        } catch (Error e) {
            System.out.println("Error:stack length:" + stackOverFlow.i);
            e.printStackTrace();
        }
    }
}

人已赞赏
Java

java 堆内存溢出异常代码编写例子【附代码】

2020-10-30 18:28:47

Java

java编写运行时常量池溢出异常程序【附代码】

2020-10-31 10:50:08

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
'); })();