ご存知のとおり、Javaは次のデータ型を使用します
byte Occupy 8 bits in memory
short Occupy 16 bits in memory
int Occupy 32 bits in memory
long Occupy 64 bits in memory
次のようなクラスを作成すると
class Demo{
byte b;
int i;
long l;
}
Demo obj = new Demo();
さて、私の質問は、obj
サイズは< or > or =
のサイズb+i+l
です104 bytes
。適切な理由で説明をお願いします。
ありがとう、
アニルクマールC