51Testing软件测试论坛

标题: 在使用VS2013进行map练习的时候出现了一个错误,有大佬能帮我看看 [打印本页]

作者: 测试积点老人    时间: 2020-8-11 11:22
标题: 在使用VS2013进行map练习的时候出现了一个错误,有大佬能帮我看看
  1. #include <iostream>
  2. #include <map>
  3. #include <string>

  4. using namespace std;

  5. void main111()
  6. {
  7.    map<int, string>    map1;

  8.    map1.insert(pair<int, string>(1, "teacher1"));
  9.    map1.insert(pair<int, string>(2, "teacher2"));

  10.    //容器的遍历
  11.    for (map<int, string>::iterator it = map1.begin; it != map1.end(); it++)
  12.    {
  13.        cout << it->first << "\t" << it->second << endl;
  14.    }
  15.    cout << "遍历结束" << endl;

  16.    while (!map1.empty())
  17.    {
  18.        map<int, string>::iterator it = map1.begin();
  19.        cout << it->first << "\t" << it->second << endl;
  20.        map1.erase(it);
  21.    }
  22. }
复制代码
出现的错误
错误 1 error C3867: “std::_Treestd::_Tmap_traits<_Kty,_Ty,_Pr,_Alloc,false>::begin”: 函数调用缺少参数列表;请使用“&std::_Treestd::_Tmap_traits<_Kty,_Ty,_Pr,_Alloc,false>::begin”创建指向成员的指针 g:\test\vs\cplusplus_up\day03\day03\stl_map.cpp 28 1 day03
麻烦帮我看下好么?


作者: Miss_love    时间: 2020-8-11 14:53
支持下
作者: 郭小贱    时间: 2020-8-12 09:33
for (map::iterator it = map1.begin; it != map1.end(); it++)改为
for (map::iterator it = map1.begin(); it != map1.end(); it++)
作者: bellas    时间: 2020-8-12 09:45
来学习
作者: 海海豚    时间: 2020-8-12 11:19
http://quan.51testing.com/pcQuan/chat/3171  看下这个
作者: jingzizx    时间: 2020-8-12 13:13
顶一下




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2