c++中容器map怎么插入一对元素?

比如我申明了一个:map<int,string>output,怎么向map里面插入... 比如我申明了一个:map<int,string> output,怎么向map里面插入 展开
 我来答
du瓶邪
推荐于2017-09-20 · TA获得超过2.4万个赞
知道大有可为答主
回答量:1.7万
采纳率:100%
帮助的人:2768万
展开全部
首先包含头文件
#include <string>
#include <map>
using namespace std;
如下写法均合法:
map<string, int> word_count;
word_count["string_1"] = 1;
word_count.insert(make_pair<string, int>("string_2", 2));
word_count.insert(map<string, int>::value_type("string_3", 3));
在Visual Studio 2010中编译通过。
舒拔博士
推荐于2017-10-06 · TA获得超过306个赞
知道小有建树答主
回答量:302
采纳率:0%
帮助的人:0
展开全部
map<int,string> output;
output.insert(pair<int,string>(1,"heheheh"));
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tobetterlife
2008-10-23 · TA获得超过741个赞
知道小有建树答主
回答量:188
采纳率:0%
帮助的人:249万
展开全部
//vc6 pass

#include <iostream>
#include <map>
#include <string>

using namespace std;

void main()

{

map<int, string> mapStudent;

mapStudent.insert(pair<int, string>(1, "student_one"));

mapStudent.insert(pair<int, string>(2, "student_two"));

mapStudent.insert(pair<int, string>(3, "student_three"));

map<int, string>::iterator iter;

for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++)
cout<<iter->first<<" "<<iter->second<<endl;

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式