我列出了一个类型为Person
的对象:
class Person{
int id
String name
String bestColor
}
def persons = [ new Person(1,'Abdennour','white'),
new Person(2,'Ali','red'),
new Person(3,'Hsen','white'),
new Person(4,'Aicha','green') ]
我有一个颜色列表:
def colors=['green','white','red']
我想根据第3个字段(persons
)订购bestColor
列表。但是,我不希望按字母顺序排列颜色,而是希望与colors
列表具有相同的顺序。
这意味着,预期的结果是:
def persons=[new Person(4,'Aicha','green')
,new Person(1,'Abdennour','white')
,new Person(3,'Hsen','white')
,new Person(2,'Ali','red')]
答案 0 :(得分:2)
所以给出:
@groovy.transform.Canonical
class Person{
int id
String name
String bestColor
}
def persons = [ new Person( 1, 'Abdennour', 'white' ),
new Person( 2, 'Ali', 'red' ),
new Person( 3, 'Hsen', 'white' ),
new Person( 4, 'Aicha', 'green' ) ]
def colors = [ 'green','white','red' ]
你可以这样做:
// Sort (mutating the persons list)
persons.sort { colors.indexOf( it.bestColor ) }
// check it's as expected
assert persons.id == [ 4, 1, 3, 2 ]