我正在尝试从泛型类型调用“等于”方法。On run time the type has an overload for 'equals' but the Object.equals(Object obj) is still triggered.
这是调用“等于”的泛型类。
public class SortedGroup <T> {
void func(T element1,T element2) {
if (element1.equals(element2))
System.out.println("yes");
else
System.out.println("no");
}
这是重载“等于”的新类型类
public class Person {
private int ID;
public Person(int ID) {
this.ID = ID;
}
...
public boolean equals(Person o) {
return (this.ID == o.ID);
}
...
}
这是主要的。
Person p1 = new Person(1);
Person p2 = new Person(1);
SortedGroup<Person> SG = new SortedGroup<Person>();
SG.func(p1,p2);
}
我希望输出是实际输出yesno
慕田峪4524236
相关分类