gpt4 book ai didi

scala - 如何在 Scala 中定义排序?

转载 作者:行者123 更新时间:2023-12-01 05:41:41 27 4
gpt4 key购买 nike

val hm: HashMap[org.joda.time.DateTime, MyType]我正在尝试获取第一个和最后一个 DateTime通过 hm.keys.min 的集合和 hm.keys.max分别但编译器说 No implicit Ordering defined for org.joda.time.DateTime .如何定义这种排序(隐式和显式选项都很有趣)?

最佳答案

object Joda {
implicit def dateTimeOrdering: Ordering[DateTime] = Ordering.fromLessThan(_ isBefore _)
}

// elsewhere
import Joda._
dateTimes.sorted

关于scala - 如何在 Scala 中定义排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9061141/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com