以下示例代码无法编译,我无法弄清楚如何在地图中插入int
和tuple
。
#include <tuple>
#include <string>
#include <map>
int main()
{
std::map<int, std::tuple<std::wstring, float, float>> map;
std::wstring temp = L"sample";
// ERROR: no instance of overloaded function matches the argument list
map.insert(1, std::make_tuple(temp, 0.f, 0.f));
return 0;
}
将示例int, std::tuple
插入地图的正确方法是什么
答案 0 :(得分:5)
要么做
map.insert(std::make_pair(1, std::make_tuple(temp, 0.f, 0.f)));
或
map.emplace(1, std::make_tuple(temp, 0.f, 0.f));
实际上更好,因为它创建的临时文件更少。
编辑:
甚至有可能根本不创建任何临时工:
map.emplace(std::piecewise_construct, std::forward_as_tuple(1),
std::forward_as_tuple(temp, 0.f, 0.f));