我正试图将值放入std::unordered
地图,如下所示:
std::unordered_map<std::string, std::pair<std::string, std::string>> testmap;
testmap.emplace("a", "b", "c"));
由于以下原因不起作用:
错误C2661:'std :: pair :: pair':没有重载函数需要3个参数
我看过this answer和this answer,似乎我需要将std::piecewise_construct
纳入进驻才能让它发挥作用,但我认为我并不相信知道在这种情况下把它放在哪里。尝试像
testmap.emplace(std::piecewise_construct, "a", std::piecewise_construct, "b", "c"); // fails
testmap.emplace(std::piecewise_construct, "a", "b", "c"); // fails
testmap.emplace(std::piecewise_construct, "a", std::pair<std::string, std::string>( std::piecewise_construct, "b", "c")); // fails
我有什么方法可以将这些值传递给emplace
吗?
我正在使用msvc2013进行编译,以防万一。
答案 0 :(得分:5)
您需要使用std::piecewise_construct
和std::forward_as_tuple
作为参数。
以下编译:
#include <unordered_map>
int main()
{
std::unordered_map<std::string,std::pair<std::string,std::string>> testmap;
testmap.emplace(std::piecewise_construct,std::forward_as_tuple("a"),std::forward_as_tuple("b","c"));
return 0;
}