我有两份Rapid Jason文件。我在运行时创建的,另一个从磁盘读取
我想比较这两个相似或不相似的文件。什么是比较rapidJson文档的最佳方法。
我的josn看起来像这样
{
"SimpleCompany:Manager":
{
"read":true,
"update":true,
"delete":true,
"insert":true
},
"SimpleCompany:Manager":
{
"read":true,
"update":true,
"delete":true,
"insert":true
},
}
答案 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;