Tengo dos conjuntos:assertEquals java establece
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
los iguales se anula método de atributo, de acuerdo a mis necesidades:
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());
}
}
cuando la depuración, el método es igual ni siquiera se llama!
¿Alguna idea?
Ver también: [Anulación es igual y hashCode en Java] (http://stackoverflow.com/questions/27581) – McDowell
@McDowell: gracias! Sabía que si hashCode devuelve diferentes valores para 2 objetos, entonces no hay posibilidad de obtener una verdadera de la llamada igual. ¡Estaba en un apuro! :) – Razvan