码迷,mamicode.com
首页 > 其他好文 > 详细

Comparable<T> 与 Comparator<T>

时间:2015-06-07 23:30:12      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

这两个都能通过Collections.sort或者Arrays.sort对对象进行排序。

Comparable<T>实例

由低到高排序 返回1  

由高到低排序 返回-1

public class Point implements Comparable<Point>
{
       public int x;
       public int y;
        @Override
       public int compareTo(Point o) {
        // TODO Auto-generated method stub
        if(this.x>o.x)
           return 1;
       else if( this.x<o.x)
         return -1;
        return 0;
        }
    }       
}   

Arrays.sort();
Collections.sort();

有时候,我们希望能够分别对Point按x,y进行排序,使用这种方法就不行了,就得使用Comparator<T>接口

    class Point
    {
        public float x;
        public float y;    
    }
    class CompareX implements Comparator<Point>
    {

        @Override
        public int compare(Point o1, Point o2) {
            // TODO Auto-generated method stub
            if(o1.x>o2.x)
                return 1;
            else if(o1.x<o2.x)
                return -1;
            else 
            {
                if(o1.y>o2.y)
                    return 1;
                else if(o1.y<o2.y)
                    return -1;
                return 0;
            }
        }
        
    }
    
    class CompareY implements Comparator<Point>
    {

        @Override
        public int compare(Point o1, Point o2) {
            // TODO Auto-generated method stub
            if(o1.y>o2.y)
                return 1;
            else if(o1.y<o2.y)
                return -1;
            return 0;
        }
        
    }
java.util.Arrays.sort(points,new CompareY());//对Y排序
java.util.Arrays.sort(points,new CompareX());//对X排序

 

Comparable<T> 与 Comparator<T>

标签:

原文地址:http://www.cnblogs.com/maydow/p/4559243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!