我有一个 C++ 方法/函数,如下所示
std::string TestWrapImpl::doProcess(std::string dirPath, std::string cmdLine) {
std::string TestWrapVar = "";
// Businesslogic here
// TestWrapVar = {BulkData From Business Logic}
// Sample Bulk Data - "<xml><node01><FNAME>KRISHNA</FNAME></node01>
// <node02><FNAME>KRISHNA</FNAME></node02></xml>"
return TestWrapVar;
}
返回这 2GB 的 XML 内容的最佳数据类型是什么?(也许字符串数据类型不能容纳 2GB 的字符串。)