本文共 559 字,大约阅读时间需要 1 分钟。
public class Person implements Comparable实现了这个接口的person类就可以放入list中进行排序了.用JDK自带的collections. 如:{ public int compareTo(Person otherPerson ){ Long otherPersonId=otherPerson.getPersonId(); int value=1; if (otherPersonId!=null&&this.getPersonId()!=null){ if(this.personId
List personList=getPersonList();Collections.sort(personList);
转载地址:http://hjkzl.baihongyu.com/