請問cJSON如何統計結構體的佔用體積

2019-12-09 13:36发布

cJSON基本都是經常玩heap自動分配內存,有點擔心內存不足,或者產生碎片什麼的
想問問如何統計一個cJSON結構體一共佔用的字節數(就是動態內存分配的總數)

typedef struct cJSON
{
    /* next/prev allow you to walk array/object chains. Alternatively, use GetArraySize/GetArrayItem/GetObjectItem */
    struct cJSON *next;
    struct cJSON *prev;
    /* An array or object item will have a child pointer pointing to a chain of the items in the array/object. */
    struct cJSON *child;

    /* The type of the item, as above. */
    int type;

    /* The item's string, if type==cJSON_String  and type == cJSON_Raw */
    char *valuestring;
    /* writing to valueint is DEPRECATED, use cJSON_SetNumberValue instead */
    int valueint;

    /* The item's name string, if this item is the child of, or is in the list of subitems of an object. */
    char *string;
} cJSON;

單個可以分析,但是鍊錶的話還很難說,難道要一個一個遍歷?
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。