20.3 Contains & Duplicate Items
Contains
The equals()
Method for a ColoredNumber Object
equals()
Method for a ColoredNumber ObjectSuppose the equals()
method for ColoredNumber is as below, i.e. two ColoredNumbers are equal if they have the same num.
@Override
public boolean equals(Object o) {
if (o instanceof ColoredNumber otherCn) {
return this.num == otherCn.num;
}
return false;
}
HashSet Behavior for Checking contains()
contains()
Suppose the equals()
method for ColoredNumber is on the previous slide, i.e. two ColoredNumbers are equal if they have the same num.
int N = 20;
HashSet<ColoredNumber> hs = new HashSet<>();
for (int i = 0; i < N; i += 1) {
hs.add(new ColoredNumber(i));
}
Suppose we now check whether 12 is in the hash table.
ColoredNumber twelve = new ColoredNumber(12);
hs.contains(twelve); //returns true
Finding an Item Using the Default Hashcode
Suppose we are using the default hash function (uses memory address):
int N = 20;
HashSet<ColoredNumber> hs = new HashSet<>();
for (int i = 0; i < N; i += 1) {
hs.add(new ColoredNumber(i));
}
ColoredNumber twelve = new ColoredNumber(12);
hs.contains(twelve); // returns ??
which yields the table below:
Suppose equals returns true if two ColoredNumbers have the same num (as we've defined previously).
Basic rule (also definition of deterministic property of a valid hashcode): If two objects are equal, they must have the same hash code so the hash table can find it.
Duplicate Values
Overriding equals()
but Not hashCode()
equals()
but Not hashCode()
Suppose we have the same equals()
method (comparing num
), but we do not override hashCode()
.
public boolean equals(Object o) {
... return this.num == otherCn.num; ...
}
The result of adding 0 through 19 is shown below:
ColoredNumber zero = new ColoredNumber(0);
hs.add(zero); // does another zero appear?
Key Takeaway: equals()
and hashCode()
equals()
and hashCode()
Bottom line: If your class override equals, you should also override hashCode in a consistent manner.
If two objects are equal, they must always have the same hash code.
If you don’t, everything breaks:
Contains
can’t find objects (unless it gets lucky).Add
results in duplicates.
Last updated