快速业务通道

Java对象排序的3种实现方法 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
new Person2("p1",3), new Person2("p2",5), new Person2("p3",4), new Person2("p4",8), new Person2("p5",6), new Person2("p6",7), new Person2("p7",1), new Person2("p8",2), new Person2("p9",9)}; List<Person2> pl3 = new ArrayList<Person2>(); for(int i = 0; i < 10; i++){ pl3.add(ps3[i]); } System.out.println("\n使用Collections.sort(List)类来比较:"); Collections.sort(pl3); for(Iterator it = pl3.iterator(); it.hasNext();){ Person2 p = (Person2) it.next(); System.out.print(p.getAge()); } }}/** * 方法1需要 * @author zhangwenzhang * */class MyComparator implements Comparator{ public int compare(Object o1, Object o2){ Person1 p1 = (Person1)o1; Person1 p2 = (Person1)o2; if(p1.getAge() < p2.getAge()){ return -1; }else if(p1.getAge() == p2.getAge()){ return 0; }else{ return 1; } }}/** * 方法1需要 * @author zhangwenzhang * */class Person1{ private String name; private int age; public Person1(){} public Person1(String name, int age) { super(); this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; }}/** * 方法2,3需要 * @author zhangwenzhang * */class Person2 implements Comparable{ private String name; private int age; public Person2(){} public Person2(String name, int age) { super(); this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public int compareTo(Object o){ Person2 p = (Person2)o; if(this.age < p.age){ return -1; }else if(this.age == p.age){ return 0; }else{ return 1; } }}

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号