重写 compareTo(T t)

Overriding compareTo(T t)

我做了一个 class "People",它有一个字符串名称。 现在我想使用 TreeSet 比较两个对象。

public class People<T> implements Comparable<T> {

    public TreeSet<People> treeSet;
    public String name;

    public People(String name)
    {
        treeSet =  new TreeSet();
this.name = name;
    }

.....

@Override
    public int compareTo(T y) {

        if(this.name.equals(y.name)) blablabla; //Here I get error 
    }

错误:

Cannot find symbol
symbol: variable name;
location: variable y of type T
where T is a type variable 
T extends Object declared in class OsobaSet

有人知道怎么解决这个问题吗?

Comparable接口中的通用类型代表将要比较的对象类型。

这是您示例的正确用法:

public class People implements Comparable<People>

在这种情况下,方法签名将为

@Override
public int compareTo(People y) {
    if (this.name.equals(y.name))  { ...
}