在Java中,用于占用大小为int[]
的{{1}}数组的内存等于n
字节。
实际上可以通过以下代码证明:
(4 + n) * 4
如此有趣的是括号中的数字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
字节的第一部分采用数组引用,第二部分 - 数组长度,然后剩下8个字节?
答案 0 :(得分:10)
4个字节的第一部分采用数组引用,第二部分 - 数组长度,然后剩下8个字节?
正常对象开销 - 通常是指示对象类型的几个字节,以及与对象的监视器关联的几个字节。这根本不是数组特定的 - 你会在所有对象中看到它。