Does Java#39;s LinkedHashMap maintain the order of keys?(Java 的 LinkedHashMap 是否维护键的顺序?)
问题描述
调用LinkedHashMap.keySet()时,返回Set的顺序会和key的添加顺序一致吗?
是的.
参见:LinkedHashMap:p><块引用>
这个链表定义了迭代排序,通常是顺序其中钥匙被插入地图(插入顺序).
并来自 HashMap#keySet 文档:
<块引用>集合 [returned] 由地图支持,所以地图的变化反映在集合,反之亦然.
When LinkedHashMap.keySet() is called, will the order of the Set returned be the same as the order the keys were added in?
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.
这篇关于Java 的 LinkedHashMap 是否维护键的顺序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 的 LinkedHashMap 是否维护键的顺序?
- C++ 和 Java 进程之间的共享内存 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01