地图插入不明确
Posted
技术标签:
【中文标题】地图插入不明确【英文标题】:Map insert is ambiguous 【发布时间】:2019-10-01 11:25:25 【问题描述】:我正在尝试使用boost::container::map
。插入数据时出现“insert is ambiguous”错误。
#include <boost/container/map.hpp>
#include <string>
#include <iostream>
int main()
boost::container::map<std::string, int> map;
map.insert("Ram",0);
【问题讨论】:
请包含错误信息,它应该包含关于两个(或更多)候选重载的信息 无法复制:I get no match for the call。您使用的是什么编译器和 boost 版本? 我得到与@uneven_mark 相同的错误,但如果我std::make_pair(std::string("RAM"), 0));
则有效。
insert to boost unordered map的可能重复
【参考方案1】:
您的插入方式不正确。我提供代码:
#include <boost/container/map.hpp>
#include <string>
#include <iostream>
#include <ostream>
int main()
boost::container::map<std::string, int> map;
map.insert(std::pair<const std::string, int>("Ram",1));
std::cout<< map["Ram"];
return 0;
【讨论】:
以上是关于地图插入不明确的主要内容,如果未能解决你的问题,请参考以下文章