c++,my_map.find(a),如果找不到该字符串会返回什么?

 我来答
Bk0X
推荐于2016-04-13 · TA获得超过9413个赞
知道小有建树答主
回答量:1217
采纳率:60%
帮助的人:667万
展开全部
std::map::find iterator find( const Key& key );
const_iterator find( const Key& key ) const;

Finds an element with key key.

Parameters

key - key value of the element to search for

Return value
Iterator to an element with key key. If no such element is found, past-the-end (see end()) iterator is returned.

找不到的话, 返回end迭代器
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
勇子同学
2013-03-21 · 超过13用户采纳过TA的回答
知道答主
回答量:53
采纳率:0%
帮助的人:37.8万
展开全部
#include <iostream>
#include <map>
using namespace std;
int main ()
{ typedef map<int,char> M;
char ch = 'A'; M m;
for ( int i=0; i<5; i++ )
m[i] = ch++; M::iterator It = m.begin();
cout << "map m:" << endl;
while ( It != m.end() )
{ cout << (*It).first << " - " << (*It).second << endl; It++; }
It = m.find(4);
if ( It != m.end() )
cout << "element key '4' has value " << (*It).second << endl;
else cout << "element key '4' not found" << endl; return 0; }

OUTPUT: // map m: // 0 - A // 1 - B // 2 - C // 3 - D // 4 - E // element key '4' has value E
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
mia☆jiancha☆ce6608
2013-03-19 · TA获得超过1526个赞
知道小有建树答主
回答量:713
采纳率:100%
帮助的人:493万
展开全部
my_map是什么东西 ?
追问
map   my_Map;
追答
找到的话就是返回那个key所在的iterator,找不到就反回my_Map.end()
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式