Java的LinkedHashMap是否维护键的顺序?

发布于 2024-09-14 02:32:06 字数 58 浏览 4 评论 0原文

调用 LinkedHashMap.keySet() 时,返回的 Set 的顺序是否与添加键的顺序相同?

When LinkedHashMap.keySet() is called, will the order of the Set returned be the same as the order the keys were added in?

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

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

发布评论

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

评论(2

童话 2024-09-21 02:32:06

是的。

请参阅:LinkedHashMap

这个链表定义了迭代
ordering,通常是顺序
其中钥匙被插入到
地图(插入顺序)。

并来自 HashMap#keySet< /a> 文档:

集合[返回]是由地图支持的,所以
地图的更改反映在
集合,反之亦然。

Yes.

See: LinkedHashMap:

This linked list defines the iteration
ordering, which is normally the order
in which keys were inserted into the
map (insertion-order).

and from the HashMap#keySet documentation:

The set [returned] is backed by the map, so
changes to the map are reflected in
the set, and vice-versa.

梦萦几度 2024-09-21 02:32:06

。例外情况是,重新插入某个键时,它会按照首次插入列表的顺序出现。

Yes. The exception is that when a key is reinserted, it appears in the order in which it was first inserted to the list.

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