缺少用于初始化map的构造函数

时间:2015-04-22 17:15:30

标签: c++ xml c++11 xml-parsing

我在之前的主题上有一些帮助,我必须将地图更改为使用int和字符串组合。当我这样做时,它给了我一个不同的问题。这就是问题所在:

src/main.cpp:11:29: error: no matching constructor for initialization of
      'std::map<int, std::string>'
  ...tagMap {{"1", "data"}, {"2", "entry"}, {"3", "id"}, {"4", "content"}};
     ^      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

似乎问题(我在另一个主题上查看)似乎暗示这个问题与使构造函数采用const引用有关吗?我真的不明白如何实现这一点。

#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<int, 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;
        }
    }
}

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:4)

尝试类似:

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

using namespace std;

int main() {
   std::map<int, std::string> tagMap {make_pair(1, "data"), make_pair(2, "entry")};
}

编辑:没有make_pair功能的版本也有效:

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

using namespace std;

int main() {
   std::map<int, std::string> tagMap {{1, "data"}, {2, "entry"}};
}

你唯一需要记住的是你不应该依赖编译器const字符串文字来编号...