java int size fixed or variable?

后端 未结 5 2211
攒了一身酷
攒了一身酷 2021-02-12 19:38

Is integer size in java of fixed length or variable size?

ex: 1 or 10000 does both the number takes same space during allocation?

5条回答
  •  半阙折子戏
    2021-02-12 20:10

    Here's the datasizes for the Java primitive types.

    Interesting to note here is that the size of boolean is not clearly defined, but it's usually 8 bits.

提交回复
热议问题