当前位置:   article > 正文

【使用ObjectSizeCalculator计算对象内存大小】

objectsizecalculator

使用ObjectSizeCalculator计算对象内存大小的总结

简单分析

如果想要简单的获取某对象的大小,不需要进行详细信息,可以直接使用ObjectSizeCalculator中的静态方法:getObjectSize。示例:

public static void main(String[] args)
{
    Map<Object,Object> map = new HashMap<>();
    map.put("AA",11);
    map.put("BB",11L);
    map.put("CC",11D);
    map.put("DD",11F);
    map.put("EE",'A');
    map.put("FF",new Date());
    map.put("GG",(byte)11);

    System.out.println("map size:"+ObjectSizeCalculator.getObjectSize(map));
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

结果是:

map size:824
  • 1

详细分析

如果想要详细分析对象中占用内存的详细信息需要用到getClassHistogram方法。示例:

public static void main(String[] args)
{
    Map<Object, Object> map = new HashMap<>();
    map.put("AA", 11);
    map.put("BB", 11L);
    map.put("CC", 11D);
    map.put("DD", 11F);
    map.put("EE", 'A');
    map.put("FF", new Date());
    map.put("GG", (byte) 11);
    
    // 初始化时,可以使用自带的内存布局
    ObjectSizeCalculator calculator1 = new ObjectSizeCalculator(ObjectSizeCalculator.getEffectiveMemoryLayoutSpecification());
    System.out.println("Use mem:" + calculator1.calculateObjectSize(map));
    List<ClassHistogramElement> elementList = calculator1.getClassHistogram();
    // 按类占用的大小排序
    elementList.sort((o1, o2) -> (int) (o1.getBytes() - o2.getBytes()));
    for (ClassHistogramElement element : elementList)
    {
        System.out.println("element>>>>" + element.toString());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

结果是:

Use mem:824
element>>>>ClassHistogramElement[class=java.lang.Integer, instances=1, bytes=16]
element>>>>ClassHistogramElement[class=java.lang.Character, instances=1, bytes=16]
element>>>>ClassHistogramElement[class=java.lang.Byte, instances=1, bytes=16]
element>>>>ClassHistogramElement[class=java.lang.Float, instances=1, bytes=16]
element>>>>ClassHistogramElement[class=java.lang.Double, instances=1, bytes=24]
element>>>>ClassHistogramElement[class=java.util.Date, instances=1, bytes=24]
element>>>>ClassHistogramElement[class=java.lang.Long, instances=1, bytes=24]
element>>>>ClassHistogramElement[class=java.util.HashMap, instances=1, bytes=48]
element>>>>ClassHistogramElement[class=java.util.HashMap.Node[], instances=1, bytes=80]
element>>>>ClassHistogramElement[class=char[], instances=7, bytes=168]
element>>>>ClassHistogramElement[class=java.lang.String, instances=7, bytes=168]
element>>>>ClassHistogramElement[class=java.util.HashMap.Node, instances=7, bytes=224]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

可见,ClassHistogramElement中会包含类路径、实例数、占用大小,还是比较详细的。

其中初始化ObjectSizeCalculator时,需要一个实现ObjectSizeCalculator.MemoryLayoutSpecification接口的参数。除了自定义外,可以使用自带的ObjectSizeCalculator.getEffectiveMemoryLayoutSpecification()

然后,我这里使用了递增的一个排序。其实ClassHistogramElement类中是自带三种排序的。但是都使用了绝对值,目前没想到它们的使用场景。下面是自带的比较器:

public static final Comparator<ClassHistogramElement> COMPARE_INSTANCES = new Comparator<ClassHistogramElement>() {
        public int compare(ClassHistogramElement o1, ClassHistogramElement o2) {
            return (int)Math.abs(o1.instances - o2.instances);
        }
    };
    public static final Comparator<ClassHistogramElement> COMPARE_BYTES = new Comparator<ClassHistogramElement>() {
        public int compare(ClassHistogramElement o1, ClassHistogramElement o2) {
            return (int)Math.abs(o1.bytes - o2.bytes);
        }
    };
    public static final Comparator<ClassHistogramElement> COMPARE_CLASSNAMES = new Comparator<ClassHistogramElement>() {
        public int compare(ClassHistogramElement o1, ClassHistogramElement o2) {
            return o1.clazz.getCanonicalName().compareTo(o2.clazz.getCanonicalName());
        }
    };
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/740720
推荐阅读
相关标签
  

闽ICP备14008679号