What is the memory consumption of an object in Java?

前端 未结 12 2542
眼角桃花
眼角桃花 2020-11-22 03:20

Is the memory space consumed by one object with 100 attributes the same as that of 100 objects, with one attribute each?

How much memory is allocated for an object?<

12条回答
  •  礼貌的吻别
    2020-11-22 03:25

    The rules about how much memory is consumed depend on the JVM implementation and the CPU architecture (32 bit versus 64 bit for example).

    For the detailed rules for the SUN JVM check my old blog

    Regards, Markus

提交回复
热议问题