我有一个类 Arraylist 包含值字符串字,字符串扩展字,双重信心,双重支持
我想根据置信度对数组列表进行排序,然后根据支持度。
我已经成功地根据信心对数组列表进行了排序,但是我没有制定一种新的方法来根据支持对数组列表进行排序
这是我根据信心对其进行排序的代码
public class ExpandedTerm implements Comparable<ExpandedTerm> {
String word;
String expandedWord;
double support;
double confidence;
public ExpandedTerm (String word,String expandedWord, double confidence,double support){
this.word = word;
this.expandedWord = expandedWord;
this.support = support;
this.confidence = confidence;
}
public String getWord(){
return word;
}
public String expandedWord(){
return expandedWord;
}
public Double getSupport(){
return support;
}
public Double getConfidence(){
return confidence;
}
@Override
public int compareTo(ExpandedTerm conf) {
return new Double(this.confidence).compareTo(new Double(conf.confidence));
}
我未能制作另一种方法,如 compareTo,根据支持值对其进行排序。如何先按置信度排序,然后再用另一种方法按支持度值排序?