71

我有一个map这样的:

map<string, pair<string,string> > myMap;

我已经使用以下方法将一些数据插入到我的地图中:

myMap.insert(make_pair(first_name, make_pair(middle_name, last_name)));

我现在如何打印地图中的所有数据?

4

3 回答 3

106
for(map<string, pair<string,string> >::const_iterator it = myMap.begin();
    it != myMap.end(); ++it)
{
    std::cout << it->first << " " << it->second.first << " " << it->second.second << "\n";
}

在 C++11 中,您不需要拼写map<string, pair<string,string> >::const_iterator. 您可以使用auto

for(auto it = myMap.cbegin(); it != myMap.cend(); ++it)
{
    std::cout << it->first << " " << it->second.first << " " << it->second.second << "\n";
}

注意使用cbegin()cend()功能。

更简单的是,您可以使用基于范围的 for 循环:

for(const auto& elem : myMap)
{
   std::cout << elem.first << " " << elem.second.first << " " << elem.second.second << "\n";
}
于 2012-12-28T14:27:35.537 回答
29

如果您的编译器支持(至少部分)C++11,您可以执行以下操作:

for (auto& t : myMap)
    std::cout << t.first << " " 
              << t.second.first << " " 
              << t.second.second << "\n";

对于 C++03,我会使用std::copy插入运算符:

typedef std::pair<string, std::pair<string, string> > T;

std::ostream &operator<<(std::ostream &os, T const &t) { 
    return os << t.first << " " << t.second.first << " " << t.second.second;
}

// ...
std:copy(myMap.begin(), myMap.end(), std::ostream_iterator<T>(std::cout, "\n"));
于 2012-12-28T14:40:58.450 回答
25

C++17 开始,您可以使用基于范围的 for 循环结构化绑定来迭代您的地图。这提高了可读性,因为您减少了代码中所需firstsecond成员的数量:

std::map<std::string, std::pair<std::string, std::string>> myMap;
myMap["x"] = { "a", "b" };
myMap["y"] = { "c", "d" };

for (const auto &[k, v] : myMap)
    std::cout << "m[" << k << "] = (" << v.first << ", " << v.second << ") " << std::endl;

输出:

m[x] = (a, b)
m[y] = (c, d)

Coliru 上的代码

于 2019-03-21T10:48:33.280 回答