程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> java-Java TreeSet定制排序

java-Java TreeSet定制排序

編輯:編程解疑
Java TreeSet定制排序

各位牛人,大家好!

  我在練習TreeSet定制排序的時候。我發現在TreeSet構造函數裡面定義一個Comparator的匿名內部類的實例,這個實例只需要實現compare這個方法就能運行。但是我看Comparator這個借口裡面有兩個方法,除了上面的那個還有一個equals。我比較好奇,內部類不需要實現接口的所有方法嘛?謝謝。下面是我的代碼。

import java.util.*;
class R
{
int count;
public R(int count)
{
this.count=count;
}
public String toString(){
return "R的count的值:"+this.count;
}
public boolean equals(Object O)
{
if(O == null)
{
System.out.println("不能為空");
return false;
}
if(O instanceof R)
{
if(((R)O).count==this.count)
{
System.out.println("值相等");
return true;
}
else
{
System.out.println("值不相等");
return false;
}
}
else
{
System.out.println("類型不對");
return false;
}
}
}
public class TestTreeSet4
{
public static void main(String[] args){
TreeSet ts1 = new TreeSet(new Comparator(){
public int compare(Object O1,Object O2){
R R1=(R)O1;
R R2=(R)O2;
if(R1.count>R2.count){
return -1;
}
else if(R1.count==R2.count){
return 0;
}
else{
return 1;
}
}
});
ts1.add(new R(-2));
ts1.add(new R(-10));
ts1.add(new R(4));
System.out.println(ts1);
}
}

最佳回答:


你的代碼沒有問題,如果需要排序的話實現的就是Comparator接口或者Comparable接口。
那個equals方法是Object類的,你只是重寫了equals方法,用來判斷兩個對象是否相等時可以調用equals方法,不是比較大小,而是純粹比較是否相同。
compareTo方法才是排序比較調用的方法,這個才是比較大小用的。

sckgeneral
wojiushiwo945you
wojiushiwo945you
sckgeneral
sckgeneral
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved