Java中Comparable和Comparator区别小结
Comparable是排序接口,若一个类实现了该接口,代表该类支持排序,而Comparator是比较器接口,通过实现某个类的比较器来对该类进行排序。 Comparable相当于"内部比较器“,Comparator相当于"外部比较器"。