关于C++ STL里面的map 今天见的代码(见问题补充)为什么开始就能判断b[str1]==0;是int的初始都是0吗?

map<string,int>a;map<string,int>b;stringstr1,str2;for(i=0;i<n;i++){cin>>str1>>str2;if... map<string ,int> a;
map<string ,int> b;
string str1,str2;
for(i=0;i<n;i++)
{
cin>>str1>>str2;
if(b[str1]==0)
{
a[str1]=1;
}
a[str2]=0;

b[str2]=1;
}
展开
 我来答
百度网友1c6e06f
推荐于2016-10-30 · TA获得超过2893个赞
知道小有建树答主
回答量:695
采纳率:66%
帮助的人:645万
展开全部

你可以看看map的源码,其中[]的实现是这样的:

mapped_type& operator[](key_type&& _Keyval)
  { 
   iterator _Where = this->lower_bound(_Keyval);

  if (_Where == this->end()
   || this->comp(_Keyval, this->_Key(_Where._Mynode())))
   _Where = this->insert(_Where,
    _STD pair<key_type, mapped_type>(
     _STD move(_Keyval),
     mapped_type()));
  return ((*_Where).second);
  }

    首先,会在map查找这个键值的项,map如果不包含某个键值,会返回map的end,然后它发现此键值没有找到(_Where == this->end())的话,会自动在末尾插入(this->insert(_Where)一个以你输入的键值和value的默认值(mapped_type())构成的对儿(pair),然后返回这个插入项的值(second,键是first)。而int的默认构造函数int(),就是0。

 

   也就是时候,哪怕你没有对map进行插入操作,哪怕只是用[]判断了下返回值是否是0,map对象也会自动添加一项。

 

    不过一般判断map是否包含一个键,是用map的find方法,判断find的返回结果是否是map的end。

joychen_
2014-08-06 · TA获得超过1747个赞
知道大有可为答主
回答量:1617
采纳率:100%
帮助的人:1804万
展开全部
map::operator[]
MSDN的解释是:
The member functions endeavors to find an element with equivalent ordering to
key. If it finds one, it returns the associated mapped
value; otherwise, it inserts value_type(key, mapped_type()) and returns
the associated (default) mapped value. You use it to look up a mapped value
given its associated key, or to ensure that an entry exists for the key if none
is found.
就是说使用[]在没找到的时候,插入这个key,并且会返回一个默认的value,如果是int会返回0,如果是string应该会返回“”。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式