C++ 11 新语法:只读遍历

C++ 11 新语法:只读遍历
// 只读遍历
std::hash_map<std::string, std::string> testMap;
for(auto iter : testMap)
{
}

你可能感兴趣的:(C++ 11 新语法:只读遍历)