私は持っていstd::unordered_map<string, std::array<int, 2>>
ます。emplace
マップに値を ing する構文は何ですか?
unordered_map<string, array<int, 2>> contig_sizes;
string key{"key"};
array<int, 2> value{1, 2};
// OK ---1
contig_sizes.emplace(key, value);
// OK --- 2
contig_sizes.emplace(key, std::array<int, 2>{1, 2});
// compile error --3
//contig_sizes.emplace(key, {{1,2}});
// OK --4 (Nathan Oliver)
// Very inefficient results in two!!! extra copy c'tor
contig_sizes.insert({key, {1,2}});
// OK --5
// One extra move c'tor followed by one extra copy c'tor
contig_sizes.insert({key, std::array<int, 2>{1,2}});
// OK --6
// Two extra move constructors
contig_sizes.insert(pair<const string, array<int, 2>>{key, array<int, 2>{1, 2}});
私はclang++ -c -x c++ -std=c++14
3.6.0を使用してclangしています
http://ideone.com/pp72yRでコードをテストしました
補遺: (4) は、以下の回答で Nathan Oliver によって提案されました。