欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解JVM栈溢出和堆溢出

程序员文章站 2022-07-03 17:34:00
一、栈溢出*error栈是线程私有的,生命周期与线程相同,每个方法在执行的时候都会创建一个栈帧,用来存储局部变量表,操作数栈,动态链接,方法出口等信息。栈溢出:方法执行时创建的...

一、栈溢出*error

栈是线程私有的,生命周期与线程相同,每个方法在执行的时候都会创建一个栈帧,用来存储局部变量表,操作数栈,动态链接,方法出口等信息。

栈溢出:方法执行时创建的栈帧个数超过了栈的深度。

原因举例:方法递归

【示例】:

public class stackerror {
    private int i = 0;

    public void fn() {
        system.out.println(i++);
        fn();
    }

    public static void main(string[] args) {
        stackerror stackerror = new stackerror();
        stackerror.fn();
    }
}

【输出】:

详解JVM栈溢出和堆溢出

解决方法:调整jvm栈的大小:-xss

-xss size

sets the thread stack size (in bytes). append the letter k or k to indicate kb, m or m to indicate mb, and g or g to indicate gb. the default value depends on the platform:

linux/x64 (64-bit): 1024 kbmacos (64-bit): 1024 kboracle solaris/x64 (64-bit): 1024 kbwindows: the default value depends on virtual memory

the following examples set the thread stack size to 1024 kb in different units:

-xss1m
-xss1024k
-xss1048576

this option is similar to -xx:threadstacksize.

在idea中点击run菜单的edit configuration如下图:

详解JVM栈溢出和堆溢出

设置后,再次运行,会发现i的值变小,这是因为设置的-xss值比原来的小:

详解JVM栈溢出和堆溢出

二、堆溢出outofmemoryerror:java heap space

堆中主要存放的是对象。

堆溢出:不断的new对象会导致堆中空间溢出。如果虚拟机的栈内存允许动态扩展,当扩展栈容量无法申请到足够的内存时。

【示例】:

public class heaperror {
    public static void main(string[] args) {
        list<string> list = new arraylist<>();

        try {
            while (true) {
                list.add("floweryu");
            }
        } catch (throwable e) {
            system.out.println(list.size());
            e.printstacktrace();
        }
    }
}

【输出】:

详解JVM栈溢出和堆溢出

解决方法:调整堆的大小:xmx

-xmx size

specifies the maximum size (in bytes) of the memory allocation pool in bytes. this value must be a multiple of 1024 and greater than 2 mb. append the letter k or k to indicate kilobytes, m or m to indicate megabytes, and g or g to indicate gigabytes. the default value is chosen at runtime based on system configuration. for server deployments, -xms and -xmx are often set to the same value. the following examples show how to set the maximum allowed size of allocated memory to 80 mb by using various units:

-xmx83886080
-xmx81920k
-xmx80m

the -xmx option is equivalent to -xx:maxheapsize.

设置-xmx256m后,输入如下,比之前小:

详解JVM栈溢出和堆溢出

到此这篇关于详解jvm栈溢出和堆溢出的文章就介绍到这了,更多相关栈溢出和堆溢出内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!