我想遍历map<string, int>中的每个元素,而不知道它的任何string-int值或键。

到目前为止我有:

void output(map<string, int> table)
{
       map<string, int>::iterator it;
       for (it = table.begin(); it != table.end(); it++)
       {
            //How do I access each element?  
       }
}

当前回答

map的value_type是一对,分别包含键和值作为它的第一个和第二个成员。

map<string, int>::iterator it;
for (it = symbolTable.begin(); it != symbolTable.end(); it++)
{
    std::cout << it->first << ' ' << it->second << '\n';
}

或者在c++ 11中,使用基于范围的for:

for (auto const& p : symbolTable)
{
    std::cout << p.first << ' ' << p.second << '\n';
}

其他回答

map的value_type是一对,分别包含键和值作为它的第一个和第二个成员。

map<string, int>::iterator it;
for (it = symbolTable.begin(); it != symbolTable.end(); it++)
{
    std::cout << it->first << ' ' << it->second << '\n';
}

或者在c++ 11中,使用基于范围的for:

for (auto const& p : symbolTable)
{
    std::cout << p.first << ' ' << p.second << '\n';
}

如果你只想迭代内容而不改变值 做的事:

for(const auto & variable_name : container_name(//here it is map name)){
    cout << variable_name.first << " : " << variable_name.second << endl; 
} 

如果你想修改映射的内容,删除const并保留&(如果你想直接修改容器内的内容)。如果你想使用容器值的副本,也要删除&号;之后,你可以在“variable_name”上使用.first和.second来访问它们。

正如来自莫斯科的@Vlad所说, 考虑std::map的value_type是这样定义的:

typedef pair<const Key, T> value_type

这意味着如果你想用一个更显式的类型说明符替换关键字auto,那么你可以这样;

for ( const pair<const string, int> &p : table ) {
   std::cout << p.first << '\t' << p.second << std::endl;
} 

只是为了理解这里auto会转化成什么。

其他方式:

map <int, string> myMap = {
    { 1,"Hello" },
    { 2,"stackOverflow" }
};
for (auto iter = cbegin(myMap); iter != cend(myMap); ++iter) {
    cout << iter->second << endl;
}

你可以这样做:

map<string, int>::iterator it;

for (it = symbolTable.begin(); it != symbolTable.end(); it++)
{
    std::cout << it->first    // string (key)
              << ':'
              << it->second   // string's value 
              << std::endl;
}

在c++ 11(及以后)中,

for (auto const& x : symbolTable)
{
    std::cout << x.first  // string (key)
              << ':' 
              << x.second // string's value 
              << std::endl;
}

在c++ 17(及以后)中,

for (auto const& [key, val] : symbolTable)
{
    std::cout << key        // string (key)
              << ':'  
              << val        // string's value
              << std::endl;
}