ho due set:assertEquals java imposta
Set<Attribute> set1 = new HashSet<Attribute>(5);
Set<Attribute> set2 = new HashSet<Attribute>(5);
//add 5 attribute objects to each of them. (not necessarily the same objects)
assertEquals(set1,set2); //<--- returns false, even though
//the added attribute objects are equal
di uguale modalità di attributo viene sostituito, secondo le mie esigenze:
public abstract class Attribute implements Serializable{
public int attribute;
public abstract boolean isNumerical();
@Override
public boolean equals(Object other){
if(!(other instanceof Attribute)){
return false;
}
Attribute otherAttribute = (Attribute)other;
return (this.attribute == otherAttribute.attribute &&
this.isNumerical() == otherAttribute.isNumerical());
}
}
quando il debug, il metodo equals è nemmeno chiamato!
Qualche idea?
Vedi anche: [Override è uguale e hashCode in Java] (http://stackoverflow.com/questions/27581) – McDowell
@McDowell: grazie! Sapevo che se hashCode restituisce valori diversi per 2 oggetti, allora non c'è possibilità di ottenere un vero dalla chiamata uguale. Ero di fretta! :) – Razvan