文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>java比较器的两种实现

java比较器的两种实现

时间:2010-07-19  来源:inter12

1 实现一个Comparator 接口
public class compater implements Comparator
{
    
    public int compare(Object arg0, Object arg1)
    {
        TestObject o1 =  null;
        TestObject o2 = null;
        int result = 0;
        if(arg0 instanceof TestObject && arg1 instanceof TestObject){
            o1 = (TestObject)arg0;
            o2 = (TestObject)arg1;
        }
        result = o1.getAge() - o2.getAge();
        return result>0?1:-1;
    }
    
}


2 比较类实现Comparable<TestObject>接口,并实现一个父类compareTo()方法
public class TestObject implements Comparable<TestObject>
{
        ...

    public int compareTo(TestObject arg0)
    {
        int result = 0;
        TestObject o1 =  null;
        if(arg0 == null)   return -1;
        if(arg0 instanceof TestObject)
        {
            o1 = (TestObject)arg0;
            result = (this.age-o1.getAge())>0?1:-1;
        }
        return result;
    }
}

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载