📜  遍历地图 c++17 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:56.439000             🧑  作者: Mango

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