本文介绍了基于对象字段对ArrayList进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我存储 DataNode
ArrayList
中的对象。 DataNode
类有一个名为 degree
的整数字段。
我想从nodeList以度
的递增顺序检索 DataNode
对象。我该怎么办。
I am storing DataNode
objects in an ArrayList
. The DataNode
class has an integer field called degree
.I want to retrieve DataNode
objects from nodeList in the increasing order of degree
. How can I do it.
List<DataNode> nodeList = new ArrayList<DataNode>();
推荐答案
修改DataNode类,使其实现Comparable接口。
Modify the DataNode class so that it implements Comparable interface.
public int compareTo(DataNode o)
{
return(degree - o.degree);
}
然后只需使用
Collections.sort(nodeList);
这篇关于基于对象字段对ArrayList进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!