9

我是 JSON-C 的新手,请查看我的示例代码并告诉我它会造成任何内存泄漏,如果是,那么如何释放 JSON-C 对象。

    struct json_object *new_obj         = NULL;
    new_obj = json_tokener_parse(strRawJSON);
    new_obj = json_object_object_get(new_obj, "FUU");
    if(NULL == new_obj){
        SYS_OUT("\nFUU not found in JSON");
        return NO;
    }
    new_obj = json_object_object_get(new_obj, "FOO"); // I m re-using new_obj, without free it?  
    if(NULL == new_obj){
        SYS_OUT("\nFOO not found in JSON");
        return NO;
    }
    // DO I need to clean new_obj, if yes then how ??

我是否需要清理 new_obj,如果是,那么如何清理。有人可以帮助了解如何进行内存管理 JSON-C。

提前致谢

4

3 回答 3

9

不,只要我们没有为 json-object 显式分配内存,我们只需要为根对象调用一次 json_object_put 并且这对我有用.....!!

于 2012-10-20T03:42:04.833 回答
7

是的,我相信您的代码会泄漏内存。问题是您要多次覆盖 new_obj 指针。你的代码应该是这样的:

struct json_object *new_obj, *fuu_obj, *foo_obj;
new_obj = json_tokener_parse(strRawJSON);
fuu_obj = json_object_object_get(new_obj, "FUU");
if(NULL == new_obj){
    SYS_OUT("\nFUU not found in JSON");
    return NO;
}
foo_obj = json_object_object_get(new_obj, "FOO"); 
if(NULL == new_obj){
    SYS_OUT("\nFOO not found in JSON");
    return NO;
}
json_object_put(foo_obj);
json_object_put(fuu_obj);
json_object_put(new_obj);

请让我知道这是否适合您。如果您需要更多帮助,json-c 有一个引用计数模式,可以为您提供有关对象的更多信息。让我知道,我可以详细说明这一点。

于 2012-03-06T03:41:19.500 回答
2

json_tokener_parse()将创建一个必须删除的对象。在这种情况下

json_object_put(new_obj);

是必须的。

于 2019-05-30T06:58:25.170 回答