What is the memory consumption of an object in Java?

前端 未结 12 2488
眼角桃花
眼角桃花 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:40

    no, 100 small objects needs more information (memory) than one big.

提交回复
热议问题