/** * @program JavaBooks * @description: 模拟变量在内存的布局 * @author: mf * @create: 2020/03/20 13:30 */ package com.type; public class IntegerTest { int value = 1; String s = "买"; int a = 257; }