C++中python dict和tr1::unordered_map的区别

发布于 2024-08-23 19:05:46 字数 193 浏览 4 评论 0原文

我有一个关于理解 python 字典如何工作的问题。

我记得在Python中的某处读过字符串是不可变的以允许散列,这也是为什么不能直接使用列表作为键的原因相同,即列表是可变的(通过支持.append),因此它们不能用作字典键。

我想知道 C++ 中 unordered_map 的实现如何处理这些情况。 (因为 C++ 中的字符串是可变的)

I have a question related to understanding of how python dictionaries work.

I remember reading somewhere strings in python are immutable to allow hashing, and it is the same reason why one cannot directly use lists as keys, i.e. the lists are mutable (by supporting .append) and hence they cannot be used as dictionary keys.

I wanted to know how does implementation of unordered_map in C++ handles these cases. (since strings in C++ are mutable)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞清仓 2024-08-30 19:05:46

所有 C++ 映射/集合容器中的键都是 const,因此是不可变的(添加到容器后)。

请注意,C++ 容器并不特定于字符串键,您可以使用任何对象,但常量性将阻止在将键复制到容器后进行修改。

Keys in all C++ map/set containers are const and thus immutable (after added to the container).

Notice that C++ containers are not specific to string keys, you can use any objects, but the constness will prevent modifications after the key is copied to the container.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文