作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们如何对 HashMap<key, ArrayList>
进行排序?
我想根据 ArrayList
中的值进行排序.
最佳答案
必须使用HashMap吗?如果您只需要 map 界面,请使用 TreeMap
<小时/>如果你想通过比较HashMap中的值来排序。如果您想在对 HashMap 的值进行排序后执行此操作,则必须编写代码来执行此操作:
Map<String, Person> people = new HashMap<>();
Person jim = new Person("Jim", 25);
Person scott = new Person("Scott", 28);
Person anna = new Person("Anna", 23);
people.put(jim.getName(), jim);
people.put(scott.getName(), scott);
people.put(anna.getName(), anna);
// not yet sorted
List<Person> peopleByAge = new ArrayList<>(people.values());
Collections.sort(peopleByAge, Comparator.comparing(Person::getAge));
for (Person p : peopleByAge) {
System.out.println(p.getName() + "\t" + p.getAge());
}
如果您想经常访问此排序列表,那么您可以将元素插入 HashMap<TreeSet<Person>>
,尽管集合和列表的语义有点不同。
关于java - 如何在 Java 中对 HashMap 进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57358757/
我是一名优秀的程序员,十分优秀!