10
Javaの場合、int[]
のサイズがn
のアレイを占有するために使用されるメモリは、(4 + n) * 4
バイトになります。Java 32ビットシステムのメモリサイズint [] array
は、実際に以下のコードによって証明することができます。
public class test {
public static void main(String[] args) {
long size = memoryUsed();
int[] array = new int[2000];
size = memoryUsed() - size;
if (size == 0)
throw new AssertionError("You need to run this with -XX:-UseTLAB for accurate accounting");
System.out.printf("int[2000] used %,d bytes%n", size);
}
public static long memoryUsed() {
return Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory();
}
}
ので興味深い括弧内の数字4
です。 4
バイトの最初の部分は配列の参照、2番目の配列の長さ、次に8バイトが残っていますか?