首页 > 代码库 > Comparable Comparator equals
Comparable Comparator equals
为了让类的对象间可以排序,通常有两种方法——Comparable<T> 与 Comparator<T>。
Comparable泛型接口
int java.lang.Comparable.compareTo(T o)
本对象与参数进行对比。返回为负表示小于,零表示相等,正数表示大于。
Compares this object with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.
本对象与参数进行对比。返回为负表示小于,零表示相等,正数表示大于。
Compares this object with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.
Comparator泛型接口
int StudentComparator.compare(Student o1, Student o2)
返回值约定同Comparable泛型接口。
当一个类没有实现Comparable接口而又希望对它排序时,可以用Comparator。
<script src="https://code.csdn.net/snippets/596810.js" type="text/javascript"></script>
equals重写
boolean Student.equals(Object o)
重写此方法达到想要的目的。
Comparable Comparator equals
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。