比较rapidjson :: Documents

时间:2014-07-23 11:44:36

标签: c++ c json rapidjson

我有两份Rapid Jason文件。我在运行时创建的,另一个从磁盘读取

我想比较这两个相似或不相似的文件。什么是比较rapidJson文档的最佳方法。

我的josn看起来像这样

{
    "SimpleCompany:Manager":
    {
        "read":true,
        "update":true,
        "delete":true,
        "insert":true
    },
    "SimpleCompany:Manager":
    {
        "read":true,
        "update":true,
        "delete":true,
        "insert":true
    },
}

1 个答案:

答案 0 :(得分:0)

是的,现在,GenericValue会使用其他值,字符串或基元覆盖operator==

bool operator==(const GenericValue<...>& rhs) const;
bool operator==(const Ch* rhs) const;
bool operator==(const std::basic_string<Ch>& rhs) const;
bool operator==(const T& rhs) const;