0

我有一个包含几个字典的数组。我如何使用每个字典都有类似年龄的键对它们进行排序?

an Array((a Dictionary('age'->'20' 'ID'->1254))(a Dictionary('age'->'35' 'ID'->1350))(a Dictionary('age'->'42' 'ID'->1425)))
4

1 回答 1

5

您可以通过提供比较器块进行排序;该块接受两个参数(数组中的两个元素),并预计返回布尔值。

data := { 
    { 'age' -> '20'. 'ID' -> 1254 } asDictionary.
    { 'age' -> '35'. 'ID' -> 1350 } asDictionary.
    { 'age' -> '42'. 'ID' -> 1425 } asDictionary
}.
sorted := data sorted: [ :a :b | (a at: 'age') > (b at: 'age') ].
  • sorted:将返回排序后的集合而不更改接收者
  • sort:将执行就地排序并返回自身

您还可以使用asSortedCollection:which 将创建一个始终支持排序不变式的新集合。

sc := data asSortedCollection: [ :a :b | (a at: 'age') > (b at: 'age') ].

"automatically inserted between age 42 and 35"
sc add: {'age' -> '39'. 'ID' -> 1500} asDictionary.
sc "a SortedCollection(a Dictionary('ID'->1425 'age'->'42' ) a Dictionary('ID'->1500 'age'->'39' ) a Dictionary('ID'->1350 'age'->'35' ) a Dictionary('ID'->1254 'age'->'20' ))"
于 2018-01-19T15:11:09.903 回答