gpt4 book ai didi

c++ - 在 rapidjson 中返回 null 或空文档

转载 作者:行者123 更新时间:2023-11-27 23:53:45 28 4
gpt4 key购买 nike

我创建了一个解析 char * 的辅助方法。但是当出现问题时,我希望它返回一个空值,如 Document。我将如何为 rapidjson 做这个?例如,在 jsoncpp 中,他们有 Value::null

Document & CEJsonHelper::parse(const char * inputString) {
Document d;
auto& document = d.Parse(inputString);

if(document.HasParseError()){
auto error = "Failed to parse JSON (offset " + std::to_string(d.GetErrorOffset()) + "). "
"Error: " + GetParseError_En(document.GetParseError());
Log(error);
return Document::Null; //wrong
}

return document;
}

最佳答案

据我了解请求,您可以将最后一行更改为

return d.Parse("{}");

如果这段代码可能很频繁并且返回的文档不打算更改(在这种情况下你最好将函数的返回值更改为const Document&),你可能希望缓存上述表达式在您的应用程序中某处的结果,并根据需要返回它。

更新:另外,我可能是错的,但 RapidJson 的更高版本(至少是当前稳定的 1.1.0)会在错误文档上抛出异常,而不是标记错误变量。

关于c++ - 在 rapidjson 中返回 null 或空文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44250647/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com