gpt4 book ai didi

java - 查找Java中操作消耗的内存

转载 作者:行者123 更新时间:2023-11-30 09:33:27 24 4
gpt4 key购买 nike

假设我在 Java 中做了一个像下面这样的冒泡排序示例:

package testing;

public class bubbleSort {
public static void main(String a[]) {
int i;
int array[] = { 12, 9, 4, 99, 120, 1, 3, 10 };
System.out.println("Values Before the sort:\n");
for (i = 0; i < array.length; i++)
System.out.print(array[i] + " ");
System.out.println();
bubble_srt(array, array.length);
System.out.print("Values after the sort:\n");
for (i = 0; i < array.length; i++)
System.out.print(array[i] + " ");
System.out.println();
System.out.println("PAUSE");
}

public static void bubble_srt(int a[], int n) {
int i, j, t = 0;
for (i = 0; i < n; i++) {
for (j = 1; j < (n - i); j++) {
if (a[j - 1] > a[j]) {
t = a[j - 1];
a[j - 1] = a[j];
a[j] = t;
}
}
}
}
}

有没有办法查出来

(a) 元素数组的数据结构消耗了多少 RAM?

(b) 如果不是 - 是否有办法比较该进程与普通 HelloWorld 相比消耗了多少 RAM?

package testing;

public class Testing {
public static void main(String[] args) {
System.out.println("Hello World!");
}

}

最佳答案

How much RAM the data structure for the array of elements consumes?

不容易。它将有大约 40-48 个字节长,这不值得担心。

If not - is there a way to compare how much RAM that process consumes compared to a vanilla HelloWorld?

我猜测,您的第一个示例比第二个示例多使用了 100 KB。这是因为加载额外类并将 int 值转换为 String 的意义背后有 allot,这是大部分内存消耗。相比之下,您的阵列微不足道。

无论如何,100 KB 也不值得担心。在台式机中,100 KB 的成本不到 1 美分,并且可以重复使用。

关于java - 查找Java中操作消耗的内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12176761/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com