gpt4 book ai didi

c++ - 没有可行的重载运算符来引用 map

转载 作者:数据小太阳 更新时间:2023-10-29 02:53:18 27 4
gpt4 key购买 nike

我正在尝试使用 map ,以便将标签名称设为引用编号。当我尝试使用它时,就像在这段代码中一样,我得到了错误(每次我引用 map 时总共有 6 个错误):

src/main.cpp:25:45: error: no viable overloaded operator[] for type
'std::map<std::string, std::string>'
const char* idcs = node.child_value(tagMap[3]);

这是代码:

#include "pugi/pugixml.hpp"

#include <iostream>
#include <string>
#include <map>

int main()
{
pugi::xml_document doca, docb;
std::map<std::string, pugi::xml_node> mapa, mapb;
std::map<std::string, std::string> tagMap {{"1", "data"}, {"2", "entry"}, {"3", "id"}, {"4", "content"}};

if (!doca.load_file("a.xml") || !docb.load_file("b.xml")) {
std::cout << "Can't find input files";
return 1;
}

for (auto& node: doca.child(tagMap[1]).children(tagMap[2])) {
const char* id = node.child_value(tagMap[3]);
mapa[id] = node;
}

for (auto& node: docb.child(tagMap[1]).children(tagMap[2])) {
const char* idcs = node.child_value(tagMap[3]);
if (!mapa.erase(idcs)) {
mapb[idcs] = node;
}
}
}

最佳答案

const char* idcs = node.child_value(tagMap[3]);

不正确,tagMap 只能通过 std::string 的键类型进行索引你需要的是:

const std::string& idcs = node.child_value(tagMap["3"]);

关于c++ - 没有可行的重载运算符来引用 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29803923/

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