51Testing软件测试论坛
标题: 在使用VS2013进行map练习的时候出现了一个错误,有大佬能帮我看看 [打印本页]
作者: 测试积点老人 时间: 2020-8-11 11:22
标题: 在使用VS2013进行map练习的时候出现了一个错误,有大佬能帮我看看
- #include <iostream>
- #include <map>
- #include <string>
- using namespace std;
- void main111()
- {
- map<int, string> map1;
- map1.insert(pair<int, string>(1, "teacher1"));
- map1.insert(pair<int, string>(2, "teacher2"));
- //容器的遍历
- for (map<int, string>::iterator it = map1.begin; it != map1.end(); it++)
- {
- cout << it->first << "\t" << it->second << endl;
- }
- cout << "遍历结束" << endl;
- while (!map1.empty())
- {
- map<int, string>::iterator it = map1.begin();
- cout << it->first << "\t" << it->second << endl;
- map1.erase(it);
- }
- }
复制代码出现的错误
错误 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 |