gpt4 book ai didi

java - 根据对象字段对 ArrayList 进行排序

转载 作者:IT老高 更新时间:2023-10-28 11:49:57 25 4
gpt4 key购买 nike

Possible Duplicate:
Sorting an ArrayList of Contacts

我将 DataNode 对象存储在 ArrayList 中。 DataNode 类有一个称为degree 的整数字段。我想以 degree 的递增顺序从 nodeList 中检索 DataNode 对象。我该怎么做。

List<DataNode> nodeList = new ArrayList<DataNode>();

最佳答案

使用自定义比较器:

Collections.sort(nodeList, new Comparator<DataNode>(){
public int compare(DataNode o1, DataNode o2){
if(o1.degree == o2.degree)
return 0;
return o1.degree < o2.degree ? -1 : 1;
}
});

关于java - 根据对象字段对 ArrayList 进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4066538/

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