gpt4 book ai didi

c++11 - 迭代 unordered_map C++

转载 作者:行者123 更新时间:2023-12-03 07:35:50 26 4
gpt4 key购买 nike

在 unordered_map 中以特定顺序插入的键是否会出现在 中?同一个订单在使用迭代器迭代 map 时?

例如:如果我们在 B 中插入 (4,3), (2, 5), (6, 7)。
并像这样迭代:

for(auto it=B.begin();it!=B.end();it++) {
cout<<(it->first);
}

它会给我们 4、2、6 或键可以按任何顺序排列吗?

最佳答案

来自 cplusplus.com关于begin的页面unordered_map的成员函数( link ):

Notice that an unordered_map object makes no guarantees on which specific element is considered its first element.



所以不,不能保证元素会按照它们插入的顺序迭代。

仅供引用,您可以迭代 unordered_map更简单:
for (auto& it: B) {
// Do stuff
cout << it.first;
}

关于c++11 - 迭代 unordered_map C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50870951/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com