zoukankan      html  css  js  c++  java
  • jmap -histo pid 输出的[C [B [I [S methodKlass的含义

    转载于https://yq.aliyun.com/articles/43542

    摘要: jmap -histo pid 输出结果样式  num     #instances         #bytes  class name ----------------------------------------------    1:       1169837      1316593...

    jmap -histo pid 输出结果样式



    输出结果说明

    [C is a char[]
    [S is a short[]
    [I is a int[]
    [B is a byte[]
    [[I is a int[][]

    上面的输出中[C对象占用Heap这么多,往往跟String有关,String其内部使用final char[]数组来保存数据的

    constMethodKlass/ methodKlass/ constantPoolKlass/ constantPoolCacheKlass/ instanceKlassKlass/ methodDataKlass

    与Classloader相关,常驻于Perm区。

    其中最后一行(total行)

    分别记录了实例总数、程序占用总内存数,本例显示的程序总占用内存约300M

     
     
  • 相关阅读:
    hero
    今年暑假不AC
    Who's in the Middle
    A Simple Problem with Integers
    I hate it
    敌兵布阵
    Ordering Tasks
    Points on Cycle
    食物链
    c++ 14.0下载地址
  • 原文地址:https://www.cnblogs.com/atomicbomb/p/7646662.html
Copyright © 2011-2022 走看看