1.概要
变量类型推导
2.代码
#include <iostream>
#include <map>
using namespace std;
int main()
{
std::map<std::string, std::string> m{ {"a", "apple"}, {"b","banana"} };
// 使用迭代器遍历容器, 迭代器类型太繁琐
//std::map<std::string, std::string>::iterator it = m.begin();
auto it = m.begin();
while (it != m.end())
{
cout << it->first << " " << it->second << endl;
++it;
}
std::cout << "Hello World!\n";
}
3.运行结果
a apple
b banana
Hello World!