我想在unordered_map
中有三个元素。我尝试了以下代码
#include <iostream>
#include <string>
#include <algorithm>
#include <boost/unordered_map.hpp>
typedef boost::unordered_map<int, std::pair<int, int>> mymap;
mymap m;
int main(){
//std::unordered_map<int, std::pair<int, int> > m;
m.insert({3, std::make_pair(1,1)});
m.insert({4, std::make_pair(5,1)});
for (auto& x: m)
std::cout << x.first << ": "<< x.second << std::endl;
}
但是我在print语句中遇到很多错误,比如
'std :: pair'不是从'const std :: __ cxx11 :: basic_string&lt; _CharT,_Traits,_Alloc&gt;'派生的 std :: cout&lt;&lt; x.first&lt;&lt; “:”&lt;&lt; x.second&lt;&lt;的std :: ENDL;
答案 0 :(得分:7)
打印声明中的问题。它应该是这样的:
std::cout << x.first << ": "<< x.second.first << ","<< x.second.second << std::endl;
_______________________________^^^^^^^^^^^^^^__________^^^^^^^^^^^^^^^_______________
您不能直接打印std::pair
。您需要单独打印每个项目。
ostream& operator<<
没有std::pair
重载,但int
有一个重载。