遍历std:vector和std:地图
遍历std::vector和std::map
//遍历vector for (auto iter = vector.begin() ; iter != vector.end() ; iter++ ){ *iter } //遍历map for(auto it = map.begin(); it != map.end(); ++it) { auto key = it->first; auto value = it->second; }