How is the hashcode computed for a card object which consists of enum suit and enum rank ?
|
If you're using Eclipse, it can generate a "good enough"
I can only imagine that NetBeans, IntelliJ IDEA, etc., can do this as well. That said, since the domain is small, this implementation will work equally well (I think...):
This assumes that
|
||||
|
|
|
With so little value space (is it 13 times 4?) it makes no sense to assign any two cards the same hash-code. So it's completely up to you, but something like:
should be OK. Generally it makes sense to define a hashcode if there are really huge numbers of possible values (like every possible |
|||
|
|
|
The space of the cards domain ( 52 ) is small enough to fit into an Here is some pseudo Java code to give you an idea:
|
|||
|

enumit self. – Jarrod Roberson May 22 '11 at 16:32