我遇到了一个我不明白的问题。在添加table类的方法中,我想使用:
Arrays.binarySearch(asso, (a,b) -> a.cle.compareTo(b.cle));
其中asso是包含键和值的关联对象数组。
通过使用类型字符串执行此代码,我在方法compareto(object)上得到一个错误“cannotfindsymbol”。
这是我的密码:
测试:
Table<String,String> table0 = new Table<String,String>(10);
table0.add("1","int");
方法:
import java.util.Arrays;
public class Table<C,V>{
Association[] asso;
public Table(int n){
asso = new Association[n];
}
public void add(C cle, V valeur){
asso[0] = new Association<C,V>(cle,valeur);
Arrays.sort(asso, (a,b) -> a.cle.compareTo(b.cle));
}
public class Association<C,V>{
public C cle;
public V valeur;
public Association(C cle,V valeur){
this.cle = cle;
this.valeur = valeur;
}
}
}
错误是:
../src/Table.java:15: error: cannot find symbol
Arrays.sort(asso, (a,b) -> a.cle.compareTo(b.cle));
^
symbol: method compareTo(Object)
location: variable cle of type C
where C is a type-variable:
C extends Object declared in class Table.Association
谢谢你的帮助。
1条答案
按热度按时间mwyxok5s1#
添加绑定到泛型类型参数的类型
C
:否则编译器就不知道了
C
工具Comparable
(因此必须有compareTo
方法)。也不要使用原始类型(
Association[]
)对于数组。用途:仔细想想,我还建议你
Association
班级static
: