Iterating HashMap on order it has been set(按已设置的顺序迭代 HashMap)
问题描述
我已经按特定顺序设置了 HashMap,但它以奇怪的顺序迭代!
I've set a HashMap on certain order but it is iterated on a strange order!
请考虑以下代码:
HashMap<String, String> map = new HashMap<String, String>();
map.put("ID", "1");
map.put("Name", "the name");
map.put("Sort", "the sort");
map.put("Type", "the type");
...
for (String key : map.keySet()) {
System.out.println(key + ": " + map.get(key));
}
结果:
Name: the name
Sort: the sort
Type: the type
ID: 1
我需要对其进行迭代,以便我放置条目.任何帮助将不胜感激.
I need to iterate it in order i've put the entries. Any help will be appreciated.
推荐答案
顺序取决于你插入的键中 hashCode()
函数的结果,除非你做了一些奇怪的事情,将主要是随机的(但一致).您正在寻找的是一个排序的地图,例如 LinkedHashMap
The order depends on the result of the hashCode()
function in the keys you are inserting which, unless you did something strange, is going to be mostly random (but consistent). What you are looking for is a sorted map such as a LinkedHashMap
如果您对详细信息感兴趣,请在此处了解 哈希表 的工作原理.
Check out a little bit about how hashtables work here if you are interested in the details.
这篇关于按已设置的顺序迭代 HashMap的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:按已设置的顺序迭代 HashMap
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01