当前位置:   article > 正文

map.find与string.find_map find

map find

1,map.find的返回值:

  1. map<int,int> m;
  2. m.insert({1,2});
  3. auto it = m.find(1);
  4. if(it != m.end()){
  5. cout << it->first << " " << it->second;
  6. }

返回值为迭代器,找不到时返回m.end()。

2,string.find的返回值:

  1. string s="abcd";
  2. auto pos = s.find("bc"); //返回值为下标位置
  3. if(pos != string::npos){ //不存在返回string::npos
  4. cout << pos;
  5. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/991999
推荐阅读
相关标签
  

闽ICP备14008679号