gpt4 book ai didi

Scala 排序集 : I cannot get how ordering works

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

如何按 id 对 Tag 元素进行排序?

我不明白如何定义 orderById 函数...

case class Tag(id: Int, name: String, ttype: String)

val orderByID = Ordering[??].on[Tag](? => ? -> ?)

val mySet: SortedSet[Tag] = SortedSet()(orderByID) ;

最佳答案

我认为你需要:

val orderByID = Ordering.by[Tag, Int](_.id)
val mySet: SortedSet[Tag] = SortedSet()(orderByID)

关于Scala 排序集 : I cannot get how ordering works,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23501965/

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