如何根据日期对 HashMap 进行排序?

时间:2022-10-17
本文介绍了如何根据日期对 HashMap 进行排序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我试图根据键中的日期对这个 HashMap 进行排序

I trying to sort this HashMap based on date in keys

我的哈希图:

Mapm = new HashMap();

推荐答案

使用 TreeMap 而不是 哈希映射.由于 Date 已经实现了 Comparable,插入时会自动排序.

Use a TreeMap instead of HashMap. As Date already implements Comparable, it will be sorted automatically on insertion.

Map<Date, ArrayList> m = new TreeMap<Date, ArrayList>();

或者,如果您有一个现有的 HashMap 并希望基于它创建一个 TreeMap,请将其传递给构造函数:

Alternatively, if you have an existing HashMap and want to create a TreeMap based on it, pass it to the constructor:

Map<Date, ArrayList> sortedMap = new TreeMap<Date, ArrayList>(m);

另见:

  • Java 教程 - 地图实现
  • Java 教程 - 对象排序
  • 这篇关于如何根据日期对 HashMap 进行排序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一条:确保每个 Hashmap 桶/槽一个值 下一条:具有字节数组键和字符串值的 HashMap - containsKey() 函数不起作用

相关文章

最新文章