STL MAP should use find() or [n] identifier to find element in map?(STL MAP 应该使用 find() 或 [n] 标识符来查找地图中的元素吗?)
问题描述
我很困惑哪个更有效?
既然可以直接访问map,为什么还要用find?
As we can access map directly, why do we need to use find?
我只需要知道哪种方式更有效.
I just need to know which way is more efficient.
#include <iostream>
#include <map>
using namespace std;
int main ()
{
map<char,int> mymap;
map<char,int>::iterator it;
mymap['a']=50;
mymap['b']=100;
mymap['c']=150;
mymap['d']=200;
//one way
it=mymap.find('b');
cout << (*it).second <<endl;
//another way
cout << mymap['b'] <<endl;
return 0;
}
提前致谢!:)
推荐答案
使用 find
意味着您不会无意中创建地图中的新元素,如果键不存在,而且——更重要的是——这意味着你可以使用 find
来查找元素,如果你只有一个对地图的常量引用.
Using find
means that you don't inadvertently create a new element in the map if the key doesn't exist, and -- more importantly -- this means that you can use find
to look up an element if all you have is a constant reference to the map.
这当然意味着你应该检查find
的返回值.通常是这样的:
That of course means that you should check the return value of find
. Typically it goes like this:
void somewhere(const std::map<K, T> & mymap, K const & key)
{
auto it = mymap.find(key);
if (it == mymap.end()) { /* not found! */ }
else { do_something_with(it->second); }
}
这篇关于STL MAP 应该使用 find() 或 [n] 标识符来查找地图中的元素吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:STL MAP 应该使用 find() 或 [n] 标识符来查找地图中的元素吗?
基础教程推荐
- Windows Media Foundation 录制音频 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07