访问地图c ++的分段错误

时间:2013-06-28 10:34:14

标签: c++ map

继续this问题我正在尝试访问地图。但我得到了一个分段错误。以下是我的代码:

typedef multimap<string, vector<string> > mos_map;
typedef multimap<string, vector<string> >::iterator mos_map_it;

int main()
{

mos_map mos;
mos_map_it it;

vector<string> v1;

v1.push_back("a");
v1.push_back("b");
v1.push_back("c");
v1.push_back("mo1");

mos.insert(mos_map::value_type(*(v1.end()-1),v1));

for(it=mos.begin();it!=mos.end();it++);
{
cout<<(*it).first<<endl;//seg fault occurs here
}

1 个答案:

答案 0 :(得分:4)

for(it=mos.begin();it!=mos.end();it++);
//                                    ^

你的循环空体。

一些提示:

  • 启用警告:

      

    警告:for循环有空体[-Wempty-body]

  • 仅在需要时声明变量:

    for(auto it = mos.begin(); it != mos.end(); it++);
    {
        cout << (*it).first << endl;
    }
    

    此代码将导致编译时错误:

      

    错误:使用未声明的标识符'it'