求大神, c++的问题
map<int, string>::iterator itor = m.begin();
for (; itor != m.end(); itor++)
{
cout << itor->first << endl;
cout << itor->second << endl;
cout << endl;
}
第二句cout报错 为什么? 说不支持运算
map<int, string>::iterator itor = m.begin();
for (; itor != m.end(); itor++)
{
cout << itor->first << endl;
cout << itor->second << endl;
cout << endl;
}
第二句cout报错 为什么? 说不支持运算
2017-03-26
举报