Java内存分析
2022-08-27 12:15:38 0 举报
Java内存分析资料
作者其他创作
大纲/内容
主要存放对象
常量池
Hash :#2
栈
主要存放基础数据类型、变量
int[] arr
MetaSpace(元数据区)
String str = 地址(#1);
Integer i = 1; int a = 1; String str = \"hello\
字符串常量池
堆
int c = 128; int d = 128; System.out.println( c == d); Integer e = 127; Integer f = 127; System.out.println( e == f); Integer g = 128; Integer h = 128; System.out.println( g == h);
int a = 1;
Integer(128)
Integer(1)
MetaSpace(元数据区)
方法区
Integer g
Hash :#1
UserInfo userInfo = 地址;
Hash :#3
String helloworld = \"helloworld\"; final String hello = \"hello\"; final String world = \"world\"; String helloworld1 = hello + world;
Integer i
uid:1userName:地址
0 条评论
下一页