示例:按属性对自定义对象的ArrayList进行排序
import java.util.*;
public class CustomObject {
private String customProperty;
public CustomObject(String property) {
this.customProperty = property;
}
public String getCustomProperty() {
return this.customProperty;
}
public static void main(String[] args) {
ArrayList list = new ArrayList<>();
list.add(new CustomObject("Z"));
list.add(new CustomObject("A"));
list.add(new CustomObject("B"));
list.add(new CustomObject("X"));
list.add(new CustomObject("Aa"));
list.sort((o1, o2) -> o1.getCustomProperty().compareTo(o2.getCustomProperty()));
for (CustomObject obj : list) {
System.out.println(obj.getCustomProperty());
}
}
}
输出
A
Aa
B
X
Z
在上面的程序中,我们定义了一个具有String
属性customProperty的CustomObject
类。
我们还添加了一个初始化属性的构造函数,以及一个返回customProperty的getter 函数 getCustomProperty()
。
在main()
方法中,我们创建了一个自定义对象list的数组列表,该列表以5个对象初始化。
为了对具有给定属性的列表进行排序,我们使用list的sort()
方法。 sort()
方法获取要排序的列表(最终排序的列表也相同)和一个comparator
。
在我们的例子中,比较器是一个lambda
- 从列表o1和o2中获取两个对象,
- 使用
compareTo()
方法比较两个对象的customProperty , - 如果o1的属性大于o2的属性,则最后返回正数;如果o1的属性小于o2的属性,则最后返回负数;如果相等,则返回零。
基于此,基于最小的属性将列表排序为最大,然后将其存储回list 。