作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个案例课
case class Employee(name: String, age: Int, joinedDate: Instant)
val employees: List[Employee]
sortBy
scala中的方法,它对多列进行排序,即
employees.sortBy(e => (e.name, e.age))
.但这是静态的,我需要动态的。请注意,排序字段具有不同的数据类型,例如 Instant、Int 和 String。
最佳答案
您可以建立一个 Ordering[Employee]
动态的。例如。 :
val orderings = Map(
"name" -> Ordering.by[Employee](_.name),
"age" -> Ordering.by[Employee](_.age),
"joinedDate" -> Ordering.by[Employee](_.joinedDate)
)
def orderingByColumns(columns: Seq[String]) = columns.map(orderings).reduce(_.orElse(_))
sorted
使用它并明确传递顺序:
employees.sorted(orderingByColumns(List("name", "age"))
关于scala - 如何在多个字段上动态排序scala列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59412699/
我是一名优秀的程序员,十分优秀!