使用比较器按时间戳对列表中的对象进行排序
在 Java 中,根据多个属性对对象列表进行排序需要使用比较器。当您有一个具有与时间相关的属性(例如 ActiveAlarm)的类时,您可以使用比较器按特定顺序对它们进行排序。
要对列表进行排序
List<ActiveAlarm> alarms = new ArrayList<>(); // Custom comparator to compare ActiveAlarm instances based on timeStarted and timeEnded Comparator<ActiveAlarm> comparator = new Comparator<ActiveAlarm>() { @Override public int compare(ActiveAlarm o1, ActiveAlarm o2) { // First compare timeStarted int comparisonResult = Long.compare(o1.timeStarted, o2.timeStarted); // If timeStarted is equal, compare timeEnded if (comparisonResult == 0) { comparisonResult = Long.compare(o1.timeEnded, o2.timeEnded); } return comparisonResult; } }; // Sort the list of alarms using the comparator Collections.sort(alarms, comparator);
在此比较器中,compare 方法首先比较 timeStarted 值并返回一个整数,指示 o1 是早于(0)o2。如果 timeStarted 值相等,则会比较 timeEnded 值。
使用 Java 8 及更高版本,您可以使用 lambda 表达式来简化比较器:
Comparator<ActiveAlarm> comparator = (o1, o2) -> { int comparisonResult = Long.compare(o1.timeStarted, o2.timeStarted); if (comparisonResult == 0) { comparisonResult = Long.compare(o1.timeEnded, o2.timeEnded); } return comparisonResult; };
通过使用比较器,您可以可以根据特定属性对对象列表进行有效排序,为 Java 中组织和操作数据提供灵活的方法。
以上是如何使用比较器按多个时间戳对 Java 对象列表进行排序?的详细内容。更多信息请关注PHP中文网其他相关文章!